commit | a6869d1c5c5172dda7fdbea5e6b6ffbd2f997db1 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Fri Dec 04 12:15:30 2015 -0500 |
committer | Brad Fitzpatrick <bradfitz@golang.org> | Mon Dec 07 14:01:56 2015 +0000 |
tree | 3e85ceb4c39c3c6ea8770ec233412a9bb7f941f7 | |
parent | 84a875caa6de1b404dad596b1b6949e436168c76 [diff] |
net/url: accept non-ASCII bytes in URL per RFC 3986 Fixes #7991. Fixes #12719. Change-Id: I5650fa35ec5d49addeda6cc6e7fa93cfbe1cdfc0 Reviewed-on: https://go-review.googlesource.com/17385 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
For documentation about how to install and use Go, visit https://golang.org/ or load doc/install-source.html in your web browser.
Our canonical Git repository is located at https://go.googlesource.com/go. There is a mirror of the repository at https://github.com/golang/go.
Go is the work of hundreds of contributors. We appreciate your help!
To contribute, please read the contribution guidelines: https://golang.org/doc/contribute.html
Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file.
If you have just untarred a binary Go distribution, you need to set the environment variable $GOROOT to the full path of the go directory (the one containing this file). You can omit the variable if you unpack it into /usr/local/go, or if you rebuild from sources by running all.bash (see doc/install-source.html). You should also add the Go binary directory $GOROOT/bin to your shell's path.
For example, if you extracted the tar file into $HOME/go, you might put the following in your .profile:
export GOROOT=$HOME/go export PATH=$PATH:$GOROOT/bin
See https://golang.org/doc/install or doc/install.html for more details.