]>
Cypherpunks repositories - gostls13.git/log
Nigel Tao [Wed, 11 Aug 2010 00:10:17 +0000 (10:10 +1000)]
exp/draw: fix drawRGBA when x0 > x1 and we have to draw right-to-left.
R=r
CC=golang-dev
https://golang.org/cl/
1940042
Rob Pike [Tue, 10 Aug 2010 23:55:02 +0000 (16:55 -0700)]
rpc: catch errors from ReadResponseBody.
Fixes #1014.
R=rsc
CC=golang-dev
https://golang.org/cl/
1941041
Robert Griesemer [Tue, 10 Aug 2010 17:11:28 +0000 (10:11 -0700)]
fix build: update exp/draw/draw_test.go
R=nigeltao
CC=golang-dev
https://golang.org/cl/
1962041
Robert Griesemer [Tue, 10 Aug 2010 16:52:02 +0000 (09:52 -0700)]
godoc: report Status 404 if a pkg or file is not found
Fixes #1005.
R=rsc, r
CC=golang-dev
https://golang.org/cl/
1935041
Robert Griesemer [Tue, 10 Aug 2010 16:50:21 +0000 (09:50 -0700)]
asn1: remove superfluous if's, unused function
R=adg
CC=golang-dev
https://golang.org/cl/
1743059
Nigel Tao [Tue, 10 Aug 2010 12:05:11 +0000 (22:05 +1000)]
exp/draw: remove the Color, Point and Rectangle types.
image: introduce Transparent and Opaque.
R=r
CC=golang-dev
https://golang.org/cl/
1947042
Scott Lawrence [Tue, 10 Aug 2010 08:01:00 +0000 (18:01 +1000)]
gopack documentation: fixed typo
(Removed extraneous "program".)
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
1950041
Nigel Tao [Tue, 10 Aug 2010 07:56:57 +0000 (17:56 +1000)]
image: fix comment typo.
R=adg
CC=golang-dev
https://golang.org/cl/
1952041
Nigel Tao [Tue, 10 Aug 2010 06:34:57 +0000 (16:34 +1000)]
image: change image representation from slice-of-slices to linear buffer,
stride and rect.
R=r
CC=golang-dev, rog
https://golang.org/cl/
1849041
Nigel Tao [Tue, 10 Aug 2010 06:08:21 +0000 (16:08 +1000)]
First cut of an HTML tokenizer (and eventually a parser).
R=r, rsc, gri, rsc1
CC=golang-dev
https://golang.org/cl/
1814044
Nigel Tao [Tue, 10 Aug 2010 05:53:19 +0000 (15:53 +1000)]
exp/draw/x11: temporarily workaround compiler bug 1011.
R=r
CC=golang-dev
https://golang.org/cl/
1951041
Mathieu Lonjaret [Tue, 10 Aug 2010 02:25:08 +0000 (12:25 +1000)]
png: grayscale support.
R=nigeltao_golang, r
CC=golang-dev
https://golang.org/cl/
1897049
Nigel Tao [Tue, 10 Aug 2010 02:08:52 +0000 (12:08 +1000)]
image: replace Width and Height by Bounds, and introduce the Point and
Rect types.
The actual image representation is unchanged. A future change will
replace the {[][]color} with {[]color, stride int, r Rectangle} and
possibly a clip region.
The draw.Color, draw.Point and draw.Rect types will be removed in a
future change. Trying to do it in this one polluted the diff with
trivia.
R=r, rsc
CC=golang-dev
https://golang.org/cl/
1918047
Rob Pike [Mon, 9 Aug 2010 22:11:02 +0000 (15:11 -0700)]
regexp: document that backslashes are the escape character.
Fixes #1013.
R=rsc, gri
CC=golang-dev
https://golang.org/cl/
1938041
Scott Lawrence [Mon, 9 Aug 2010 17:45:20 +0000 (10:45 -0700)]
goinstall docs: fixed typos
(Added mising closing quotes.)
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/
1902049
Evan Shaw [Mon, 9 Aug 2010 17:21:54 +0000 (10:21 -0700)]
big: Several fixes to bitwise functions
Fixed:
* SetString calls in bitwise tests
* Aliasing problem with self bitwise test
* One test case that was just flat out wrong
* Slice panics in nat.or and nat.xor
* Aliasing problems in Int.And, Int.AndNot, Int.Or, Int.Xor
Fixes #1007.
R=gri
CC=golang-dev
https://golang.org/cl/
1895049
Nicholas Waples [Mon, 9 Aug 2010 14:25:54 +0000 (10:25 -0400)]
asn1 incorrectly encoded signed integers. When determining the
encoded length it was not taking into account the sign bit.
Fixes #997.
R=agl1, gri
CC=golang-dev
https://golang.org/cl/
1870047
Alex Brainman [Mon, 9 Aug 2010 01:30:33 +0000 (11:30 +1000)]
runtime: free memory returned by windows GetEnvironmentStrings
R=golang-dev
CC=golang-dev
https://golang.org/cl/
1917048
Alex Brainman [Mon, 9 Aug 2010 01:21:20 +0000 (11:21 +1000)]
os: fix ForkExec() handling of envv == nil
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
1913047
Nigel Tao [Mon, 9 Aug 2010 00:44:38 +0000 (10:44 +1000)]
image: introduce Decode and RegisterFormat.
R=r, rsc
CC=golang-dev
https://golang.org/cl/
1849054
Russ Cox [Sat, 7 Aug 2010 00:37:45 +0000 (17:37 -0700)]
net/textproto: new package, with example net/dict
Generic text-based network protcol library for SMTP-like protocols.
HTTP and NNTP should be changed to use this package,
and I expect that SMTP and POP3 will be able to use it too.
R=cemeyer, nigeltao_golang, r
CC=golang-dev, petar-m
https://golang.org/cl/889041
Rob Pike [Sat, 7 Aug 2010 00:02:04 +0000 (10:02 +1000)]
fmt.Scan: empty strings are errors
Fixes #1002.
R=rsc
CC=golang-dev
https://golang.org/cl/
1882046
Kai Backman [Fri, 6 Aug 2010 23:57:49 +0000 (16:57 -0700)]
arm: bugfixes and syscall
- integer divide by zero raises panic
- float comparisons involving NaNs work
- syscall interface actually handles return
values and errno correctly.
R=rsc, bradfitzpatrick
CC=golang-dev
https://golang.org/cl/
1847047
Charles L. Dorian [Fri, 6 Aug 2010 23:50:48 +0000 (16:50 -0700)]
math: fix amd64 Hypot.
Underflow/overflow tests for exp_amd64.s
Fixes #957.
R=rsc
CC=golang-dev
https://golang.org/cl/
1817041
Roger Peppe [Fri, 6 Aug 2010 23:44:38 +0000 (16:44 -0700)]
encoding/binary: add complex
R=rsc
CC=golang-dev
https://golang.org/cl/
1879043
Anschel Schaffer-Cohen [Fri, 6 Aug 2010 23:39:18 +0000 (16:39 -0700)]
exp/iterable: add UintArray
all other basic types seem to be represented.
R=rsc
CC=golang-dev
https://golang.org/cl/
1919042
Russ Cox [Fri, 6 Aug 2010 23:31:12 +0000 (16:31 -0700)]
A+C: Anschel Schaffer-Cohen (individual CLA)
R=gri
CC=golang-dev
https://golang.org/cl/
1893045
Robert Griesemer [Fri, 6 Aug 2010 22:07:54 +0000 (15:07 -0700)]
test/peano: use directly recursive type def
Test case for http://code.google.com/p/go/issues/detail?id=999
R=r
CC=golang-dev
https://golang.org/cl/
1892050
Russ Cox [Fri, 6 Aug 2010 20:10:47 +0000 (13:10 -0700)]
A+C: Nicholas Waples and Mathieu Lonjaret (individual CLA)
R=gri
CC=golang-dev
https://golang.org/cl/
1856054
Alex Brainman [Thu, 5 Aug 2010 23:42:55 +0000 (09:42 +1000)]
fix windows build
R=rsc
CC=golang-dev
https://golang.org/cl/
1890045
Rob Pike [Thu, 5 Aug 2010 20:14:41 +0000 (06:14 +1000)]
once: replace all uses of package once with sync.Once.
package once remains for now; will be deleted after next release.
R=golang-dev, brainman
CC=golang-dev
https://golang.org/cl/
1914046
Christian Himpel [Thu, 5 Aug 2010 13:11:06 +0000 (23:11 +1000)]
bytes: add IndexRune, FieldsFunc and To*Special
Basically these functions are implemented the same way as the
corresponding functions in the strings package. Test functions
are implemented for IndexRune and FieldsFunc.
Additionally two typos are fixed in packages bytes and strings.
R=r
CC=golang-dev
https://golang.org/cl/
1696062
Rob Pike [Thu, 5 Aug 2010 03:31:10 +0000 (13:31 +1000)]
sync: add sync.Once, a proposed replacement for package once.
This implementation is simpler and more useful, since it can work
with methods.
R=rsc
CC=golang-dev
https://golang.org/cl/
1864051
Andrew Gerrand [Thu, 5 Aug 2010 03:21:41 +0000 (13:21 +1000)]
tag release.2010-08-04
R=rsc
CC=golang-dev
https://golang.org/cl/
1863051
Andrew Gerrand [Thu, 5 Aug 2010 03:18:49 +0000 (13:18 +1000)]
release.2010-08-04
R=rsc
CC=golang-dev
https://golang.org/cl/
1892049
Alex Brainman [Thu, 5 Aug 2010 01:43:53 +0000 (11:43 +1000)]
path: fix comment for Split()
R=golang-dev
CC=golang-dev
https://golang.org/cl/
1905050
Robert Griesemer [Thu, 5 Aug 2010 01:02:43 +0000 (18:02 -0700)]
go/parser.ParseFiles: don't override error (to nil) if there is one
Also: Return first instead of last error as that seems more useful.
R=r
CC=golang-dev
https://golang.org/cl/
1897050
Robert Griesemer [Thu, 5 Aug 2010 00:58:56 +0000 (17:58 -0700)]
fix build: literal types cannot be parenthesized anymore
R=rsc
CC=golang-dev
https://golang.org/cl/
1849055
Russ Cox [Thu, 5 Aug 2010 00:50:22 +0000 (17:50 -0700)]
amd64: use segment memory for thread-local storage
Returns R14 and R15 to the available register pool.
Plays more nicely with ELF ABI C code.
In particular, our signal handlers will no longer crash
when a signal arrives during execution of a cgo C call.
Fixes #720.
R=ken2, r
CC=golang-dev
https://golang.org/cl/
1847051
Christian Himpel [Thu, 5 Aug 2010 00:31:00 +0000 (10:31 +1000)]
misc/vim: highlight misspelled words only in comments
R=adg
CC=golang-dev
https://golang.org/cl/
1915043
Robert Griesemer [Thu, 5 Aug 2010 00:21:02 +0000 (17:21 -0700)]
gofmt/go/parser: strengthen syntax checks
- don't allow parenthesized receiver base types or anonymous fields
- fixed a couple of other omissions
- adjusted gofmt test script
- removed several TODOs
R=rsc
CC=golang-dev
https://golang.org/cl/
1897043
Alex Brainman [Thu, 5 Aug 2010 00:18:57 +0000 (17:18 -0700)]
goinstall: check for error from exec.*Cmd.Wait() before using its result
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
1923043
Christian Himpel [Thu, 5 Aug 2010 00:15:04 +0000 (17:15 -0700)]
cgo: generate correct multiple return value function invocations
Fixes #967.
R=rsc
CC=golang-dev
https://golang.org/cl/
1855051
Russ Cox [Thu, 5 Aug 2010 00:14:51 +0000 (17:14 -0700)]
A+C: fix email address
R=adg
CC=golang-dev
https://golang.org/cl/
1856052
Robert Griesemer [Wed, 4 Aug 2010 06:39:01 +0000 (23:39 -0700)]
gofmt: make code more readable by avoiding redeclaration
R=r
CC=golang-dev
https://golang.org/cl/
1910045
Scott Lawrence [Wed, 4 Aug 2010 03:33:24 +0000 (13:33 +1000)]
bytes: added test case for explode with blank string.
Tests for the equivalent of the strings.explode("") panic bug (issue 980).
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
1850052
Anthony Martin [Wed, 4 Aug 2010 00:05:00 +0000 (17:05 -0700)]
json: object members must have a value
R=rsc
CC=golang-dev
https://golang.org/cl/
1847050
Russ Cox [Wed, 4 Aug 2010 00:04:54 +0000 (17:04 -0700)]
A+C: Anthony Martin, Christian Himpel (individual CLA)
R=adg
CC=golang-dev
https://golang.org/cl/
1689061
Nigel Tao [Tue, 3 Aug 2010 23:44:02 +0000 (09:44 +1000)]
bufio: introduce Peek.
I'll leave whether or not this obsoletes UnreadByte for a future CL.
R=r, rsc
CC=golang-dev
https://golang.org/cl/
1912042
Rob Pike [Tue, 3 Aug 2010 22:34:52 +0000 (08:34 +1000)]
os: change the type of permissions argument for Open etc. to uint32.
Besides being more correct, it protects against people accidentally
exchanging the permission and open mode arguments to Open.
R=rsc
CC=golang-dev
https://golang.org/cl/
1904045
Tarmigan Casebolt [Tue, 3 Aug 2010 21:34:44 +0000 (14:34 -0700)]
websocket: correct challenge response
Tested against latest Chrome.
R=ukai, rsc
CC=golang-dev
https://golang.org/cl/
1743053
Kai Backman [Tue, 3 Aug 2010 20:09:16 +0000 (13:09 -0700)]
bikeshed: only output bug when we have a regression
R=rsc
CC=golang-dev
https://golang.org/cl/
1897046
Russ Cox [Tue, 3 Aug 2010 20:04:02 +0000 (13:04 -0700)]
CONTRIBUTORS: Rietveld alias for brad@danga.com
R=adg
CC=bradfitz, golang-dev
https://golang.org/cl/
1715060
Peter Mundy [Tue, 3 Aug 2010 20:03:50 +0000 (13:03 -0700)]
os: Null device
R=rsc, cw
CC=golang-dev
https://golang.org/cl/
1854042
Kai Backman [Tue, 3 Aug 2010 20:03:40 +0000 (13:03 -0700)]
arm: remove old qemu dependency from gotest
R=rsc
CC=golang-dev
https://golang.org/cl/
1678063
Russ Cox [Tue, 3 Aug 2010 20:01:28 +0000 (13:01 -0700)]
test/run: diff old new
R=r, iant
CC=golang-dev
https://golang.org/cl/
1907046
Adam Langley [Tue, 3 Aug 2010 16:26:48 +0000 (12:26 -0400)]
crypto/x509: unwrap Subject Key Identifier
RFC 5280, 4.2.1.2 says:
SubjectKeyIdentifier ::= KeyIdentifier
KeyIdentifier ::= OCTET STRING
Previously, we were failing to unwrap the second level of OCTET STRING
encoding.
Fixes #993.
R=rsc
CC=golang-dev
https://golang.org/cl/
1917044
Russ Cox [Tue, 3 Aug 2010 08:07:57 +0000 (01:07 -0700)]
gc: empty select
R=ken2
CC=golang-dev
https://golang.org/cl/
1871057
Russ Cox [Tue, 3 Aug 2010 08:07:40 +0000 (01:07 -0700)]
gc: bug301
Fixes #990.
R=ken2
CC=golang-dev
https://golang.org/cl/
1742055
Russ Cox [Tue, 3 Aug 2010 07:53:32 +0000 (00:53 -0700)]
gc: bug299, bug300
R=ken2
CC=golang-dev
https://golang.org/cl/
1731057
Russ Cox [Tue, 3 Aug 2010 07:36:44 +0000 (00:36 -0700)]
A+C: Tarmigan Casebolt
R=adg
CC=golang-dev, tarm
https://golang.org/cl/
1923041
Russ Cox [Tue, 3 Aug 2010 07:26:02 +0000 (00:26 -0700)]
gc: index bounds tests and fixes
move constant index checking to front end
x[2:1] is a compile-time error now too
R=ken2
CC=golang-dev
https://golang.org/cl/
1848056
Scott Lawrence [Tue, 3 Aug 2010 03:35:14 +0000 (13:35 +1000)]
strings: fix Split("", "", -1)
Fixes #980.
Made it return an empty array, rather than crash.
Added relevant test cases to strings.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
1914041
Rob Pike [Tue, 3 Aug 2010 03:27:50 +0000 (13:27 +1000)]
Add Scott Lawrence to C&A
R=adg
CC=golang-dev
https://golang.org/cl/
1899044
Alex Brainman [Tue, 3 Aug 2010 02:04:41 +0000 (12:04 +1000)]
syscall: make sure go error numbers do not clash with windows system errors
R=rsc
CC=golang-dev
https://golang.org/cl/
1857049
Andrew Gerrand [Tue, 3 Aug 2010 01:06:18 +0000 (11:06 +1000)]
builder: update script so it doesn't create tar-bombs
R=rsc
CC=golang-dev
https://golang.org/cl/
1857048
Nigel Tao [Tue, 3 Aug 2010 00:57:53 +0000 (10:57 +1000)]
image: introduce Gray and Gray16 types, and remove the named colors
except for Black and White.
R=rsc
CC=golang-dev, mpl, r
https://golang.org/cl/
1903049
Rob Pike [Mon, 2 Aug 2010 22:04:33 +0000 (08:04 +1000)]
io: consolidate multi_reader and multi_writer into a single file, multi.go
R=rsc
CC=golang-dev
https://golang.org/cl/
1860046
Nigel Tao [Sun, 1 Aug 2010 23:52:15 +0000 (09:52 +1000)]
image/png: use image-specific methods for checking opacity.
R=rsc
CC=golang-dev, mpl
https://golang.org/cl/
1894047
Bill Neubauer [Fri, 30 Jul 2010 19:27:03 +0000 (12:27 -0700)]
websocket: fix bug involving spaces in header keys
R=rsc, ukai
CC=golang-dev
https://golang.org/cl/
1669056
Russ Cox [Fri, 30 Jul 2010 19:26:50 +0000 (12:26 -0700)]
CONTRIBUTORS: add wcn@google.com alias to match with code review
R=wcn
CC=golang-dev
https://golang.org/cl/
1902043
Russ Cox [Fri, 30 Jul 2010 18:32:55 +0000 (11:32 -0700)]
runtime: do not fall through in SIGBUS/SIGSEGV
Faults beyond the first page are not expected
and should fail loudly. They are not subject to recover.
R=r
CC=golang-dev
https://golang.org/cl/
1915042
Kai Backman [Fri, 30 Jul 2010 09:33:40 +0000 (12:33 +0300)]
arm: disable another flaky test.
these tests work fine on n1 and gumstix. it's unclear
why they keep failing on the godashboard build.
R=rsc
CC=golang-dev
https://golang.org/cl/
1664056
Kai Backman [Fri, 30 Jul 2010 07:53:26 +0000 (10:53 +0300)]
fix build
R=rsc
CC=golang-dev
https://golang.org/cl/
1913042
Kai Backman [Fri, 30 Jul 2010 07:37:51 +0000 (10:37 +0300)]
arm: bugfixes (stack clobbering, indices)
also changed zerodivide to output "BUG"
R=rsc
CC=golang-dev
https://golang.org/cl/
1871055
Kai Backman [Fri, 30 Jul 2010 07:35:07 +0000 (10:35 +0300)]
arm: add gdb support to android launcher script
R=rsc
CC=golang-dev
https://golang.org/cl/
1742050
Andrew Gerrand [Fri, 30 Jul 2010 05:18:55 +0000 (15:18 +1000)]
tag release.2010-07-29
R=rsc
CC=golang-dev
https://golang.org/cl/
1896044
Andrew Gerrand [Fri, 30 Jul 2010 04:48:30 +0000 (14:48 +1000)]
release.2010-07-29
R=rsc
CC=golang-dev
https://golang.org/cl/
1907045
Andrew Gerrand [Fri, 30 Jul 2010 04:00:59 +0000 (14:00 +1000)]
misc/builder: support for uploading tarballs to googlecode
R=rsc
CC=golang-dev
https://golang.org/cl/
1784042
Joe Poirier [Fri, 30 Jul 2010 01:47:11 +0000 (11:47 +1000)]
cov and prof: implement windows version (just function stubs and build mods)
R=brainman, rsc
CC=golang-dev
https://golang.org/cl/
1676054
Robert Griesemer [Fri, 30 Jul 2010 01:14:49 +0000 (18:14 -0700)]
bug300: literal types must not be parenthesized
( This CL is dependent on acceptance of
https://golang.org/cl/
1913041 /show )
R=go-dev
CC=golang-dev
https://golang.org/cl/
1860045
Robert Griesemer [Fri, 30 Jul 2010 01:13:41 +0000 (18:13 -0700)]
go_spec: don't allow parens around the literal type of composite literals
Background: The current spec is imprecise with respect to the parsing ambiguity
for composite literals: It says that the ambiguity arises when the TypeName form
of the LiteralType is used. The following code:
if (B) {} ...
is not using the TypeName form (but the parenthesized TypeName form) and thus
could be interpreted as:
if ((B){}) ...
instead of
if B {} ...
Both compilers and gofmt choose the latter interpretation. One could fix the
spec by making the clause regarding the parsing ambiguity more precise ("...using
the _possibly parenthesized_ TypeName form of the LiteralType..."). The alternative
(chosen here) is to simply disallow parenthesized literal types. Except for a single
test case (test/parentype.go) there appears to be no Go code under $GOROOT containing
parenthesized literal types. Furthermore, parentheses are never needed around a
literal type for correct parsing.
R=golang-dev
CC=golang-dev
https://golang.org/cl/
1913041
Andrew Gerrand [Fri, 30 Jul 2010 00:36:13 +0000 (10:36 +1000)]
doc: update front page and go_learning.html
This is a stop-gap change to give more current information visibility
before a more thorough reorganization.
R=r, rsc, gri
CC=golang-dev
https://golang.org/cl/
1902042
Yuusei Kuwana [Thu, 29 Jul 2010 21:12:04 +0000 (14:12 -0700)]
mime: add AddExtensionType
For example:
mime.AddExtensionType(".m3u8", "application/x-mpegURL")
mime.AddExtensionType(".ts", "video/MP2T")
R=rsc, rsc1
CC=golang-dev
https://golang.org/cl/
1698046
Russ Cox [Thu, 29 Jul 2010 20:49:01 +0000 (13:49 -0700)]
A+C: Yuusei Kuwana (individual CLA)
R=r
CC=golang-dev
https://golang.org/cl/
1871054
Robert Griesemer [Thu, 29 Jul 2010 20:02:27 +0000 (13:02 -0700)]
scanner: better comment
R=rsc
CC=golang-dev
https://golang.org/cl/
1900044
Robert Griesemer [Thu, 29 Jul 2010 17:54:03 +0000 (10:54 -0700)]
bug299: parenthesized receiver types/anonymous fields are illegal
R=r
CC=golang-dev
https://golang.org/cl/
1846051
Rob Pike [Thu, 29 Jul 2010 17:50:09 +0000 (10:50 -0700)]
fmt.Print: fix bug in placement of spaces introduced when ...T went in.
Fixes #976.
R=rsc, chris tighe, r
CC=golang-dev
https://golang.org/cl/
1697057
Alex Brainman [Thu, 29 Jul 2010 06:54:01 +0000 (16:54 +1000)]
runtime: fix bug introduced in revision
4a01b8d28570
R=rsc
CC=golang-dev
https://golang.org/cl/
1874046
Wei Guangjing [Thu, 29 Jul 2010 04:58:28 +0000 (14:58 +1000)]
net: implement windows version of LookupHost/Port/SRV
R=brainman, rsc
CC=golang-dev
https://golang.org/cl/
1748042
Vinu Rajashekhar [Thu, 29 Jul 2010 01:26:29 +0000 (18:26 -0700)]
test/sigchld.go: use syscall.Kill instead of a combination
of syscall.Syscall and syscall.SYS_KILL.
In RTEMS, there is no syscall.Syscall support, but it does
support POSIX signals. So, if this testcase is changed to use
syscall.Kill, then it would run fine on RTEMS, when using gccgo.
R=rsc, iant
CC=golang-dev
https://golang.org/cl/
1863046
Russ Cox [Thu, 29 Jul 2010 01:21:50 +0000 (18:21 -0700)]
gc: fix SIGBUS
R=ken2
CC=golang-dev
https://golang.org/cl/
1906042
Fazlul Shahriar [Thu, 29 Jul 2010 01:13:56 +0000 (18:13 -0700)]
http: add https client support
Fixes #851.
R=rsc
CC=golang-dev
https://golang.org/cl/
1729052
Rob Pike [Wed, 28 Jul 2010 20:11:22 +0000 (13:11 -0700)]
fmt: move comment into doc.go.
Fix the documentation of newline handling in *f routines
to match the implementation.
R=rsc
CC=golang-dev
https://golang.org/cl/
1899042
Brad Fitzpatrick [Wed, 28 Jul 2010 18:30:00 +0000 (11:30 -0700)]
io: MultiReader and MultiWriter
Little helpers I've found useful.
R=adg, rsc, r, gri
CC=golang-dev
https://golang.org/cl/
1764043
Kai Backman [Wed, 28 Jul 2010 13:33:52 +0000 (16:33 +0300)]
arm: fix build (dodgy floats)
R=rsc
CC=golang-dev
https://golang.org/cl/
1907041
Kai Backman [Wed, 28 Jul 2010 12:58:35 +0000 (15:58 +0300)]
arm: minor bugfixes.
R=rsc
CC=golang-dev
https://golang.org/cl/
1692057
Russ Cox [Tue, 27 Jul 2010 20:43:58 +0000 (13:43 -0700)]
5g: fix build
R=ken2
CC=golang-dev
https://golang.org/cl/
1893042
Andrew Gerrand [Tue, 27 Jul 2010 07:22:45 +0000 (17:22 +1000)]
bufio: fix optimisation test
Fixes #949.
R=rsc
CC=golang-dev
https://golang.org/cl/
1886046
Andrew Gerrand [Tue, 27 Jul 2010 07:22:22 +0000 (17:22 +1000)]
net: add nil checks to several String methods to avoid panics
Fixes #945.
R=r
CC=golang-dev
https://golang.org/cl/
1848049