aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-02-16release.2011-02-15weekly.2011-02-15Andrew Gerrand
R=rsc CC=golang-dev https://golang.org/cl/4191041
2011-02-15encoding/line: fix line returned after EOFAdam Langley
Fixes #1509. R=r CC=golang-dev https://golang.org/cl/4167045
2011-02-14godoc: don't hide package lookup error if there's no command with the same nameRobert Griesemer
Fixes #1514. R=r, r2 CC=golang-dev https://golang.org/cl/4173050
2011-02-14rpc: properly discard values.Roger Peppe
R=r, rsc, r2 CC=golang-dev https://golang.org/cl/4171050
2011-02-15runtime: detect failed thread creation on WindowsAlex Brainman
Fixes #1495. R=rsc CC=golang-dev https://golang.org/cl/4182047
2011-02-14makehtml: use appendRob Pike
The program is old and missed its opportunity. R=gri, adg CC=golang-dev https://golang.org/cl/4178050
2011-02-14tutorial: rework the introduction to give "Effective Go"Rob Pike
prominence and downplay the course notes. R=golang-dev, gri, rsc CC=golang-dev https://golang.org/cl/4190041
2011-02-15archive/zip: handle files with data descriptorsAndrew Gerrand
Fixes #1471. R=rsc CC=golang-dev https://golang.org/cl/4183048
2011-02-14gob: decode into nil, this time for sure.Rob Pike
Yesterday's change was too simple-minded and failed if an interface value was being discarded. We need to parse the data stream and remember any type information that arrives. Also fix a minor bug when ignoring an interface: toss only what we know about, not everything. R=rsc CC=golang-dev https://golang.org/cl/4179045
2011-02-14windows: runtime: implemented console ctrl handler (SIGINT).Hector Chu
R=rsc, brainman, iant2 CC=golang-dev https://golang.org/cl/4129049
2011-02-14build: run test/ directory firstRuss Cox
R=adg, r CC=golang-dev https://golang.org/cl/4183047
2011-02-13go/printer: line comments must always end in a newlineRobert Griesemer
Fixes #1503. R=rsc CC=golang-dev https://golang.org/cl/4170045
2011-02-12gob: allow Decode(nil) and have it just discard the next value.Rob Pike
Fixes #1489. R=rsc CC=golang-dev https://golang.org/cl/4187046
2011-02-12code.html: update to reflect that package names need not be uniqueRob Pike
Fixes #1507. R=golang-dev, ehog.hedge, rsc CC=golang-dev https://golang.org/cl/4160049
2011-02-115ld: part of 64bit eor - forgot to check in.Ken Thompson
R=r, rsc CC=golang-dev https://golang.org/cl/4176046
2011-02-11gofmt: exclude testcase with incorrect syntaxRobert Griesemer
R=r, r2 CC=golang-dev https://golang.org/cl/4160047
2011-02-11strconv/ftoa: avoid a double shift. (shifts by variables are expensive.)Rob Pike
R=rsc, gri, r2 CC=golang-dev https://golang.org/cl/4169048
2011-02-11testing: include elapsed time in outputRuss Cox
R=r CC=golang-dev https://golang.org/cl/4180045
2011-02-11gc: correct receiver in method missing errorLorenzo Stoakes
Fixes #1324. R=rsc1, r, rsc CC=golang-dev https://golang.org/cl/3435042
2011-02-11sync: check Unlock of unlocked MutexRuss Cox
R=r, adg CC=golang-dev https://golang.org/cl/4180044
2011-02-115ld: stoped generating 64-bit eorKen Thompson
R=rsc CC=golang-dev https://golang.org/cl/4182049
2011-02-11syscall: remove obsolete socket IO controlMikio Hara
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4183046
2011-02-11http: add pipelining to ClientConn, ServerConnPetar Maymounkov
R=rsc, bradfitzwork CC=golang-dev https://golang.org/cl/4082044
2011-02-11syscall: add sockaddr_dl, sysctl with routing message support for darwin, ↵Mikio Hara
freebsd R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4171043
2011-02-11runtime: check that SysReserve returns aligned memoryRuss Cox
R=iant, iant2 CC=golang-dev https://golang.org/cl/4180043
2011-02-118l, runtime: place G and M pointers relative to _tos on Plan 9, instead of ↵Yuval Pavel Zholkover
hardcoded values for USTKTOP. This should allow executing both on native Plan 9 and inside 9vx. R=rsc CC=golang-dev https://golang.org/cl/3993044
2011-02-11bytes: fix bugs in buffer.ReadBytesEvan Shaw
Fixes #1498. R=golang-dev, mattn, r, rsc CC=golang-dev https://golang.org/cl/4140041
2011-02-11crypto/openpgp: minor updates to subpackagesAdam Langley
Now that packet/ is checked in, we can add its Makefile. Also, a couple of updates to error/ and s2k/ for bugfixes and to use the new crypto package. R=bradfitzgo CC=golang-dev https://golang.org/cl/4179043
2011-02-11fix example in inotifyMathieu Lonjaret
R=golang-dev, adg CC=golang-dev https://golang.org/cl/4174045
2011-02-11flag: allow hexadecimal and octal input for integer flags.Luuk van Dijk
R=r CC=golang-dev https://golang.org/cl/4182043
2011-02-10crypto/openpgp/packet: add remainder of packet types.Adam Langley
(The unittest for Signature may seem a little small, but it's tested by the higher level code.) R=bradfitzgo CC=golang-dev https://golang.org/cl/4173043
2011-02-10godoc: godoc: Use IsAbs to test for absolute paths (fix for win32).Robert Griesemer
One more case. R=r, r2 CC=golang-dev https://golang.org/cl/4170044
2011-02-10godoc: Use IsAbs to test for absolute paths (fix for win32).Yasuhiro Matsumoto
R=gri CC=golang-dev https://golang.org/cl/4129046
2011-02-11syscall: change windows apis with bool return value to return errno insteadAlex Brainman
This change is to make these apis similar to their unix counterparts. R=rsc CC=golang-dev https://golang.org/cl/4185042
2011-02-10http: add Server type supporting timeoutsBrad Fitzpatrick
R=rsc CC=golang-dev https://golang.org/cl/4172041
2011-02-10runtime: complete windows SysReserveRuss Cox
Should fix windows/386 build. R=brainman CC=golang-dev https://golang.org/cl/4170041
2011-02-11encoding/binary: update package doc string to be more comprehensiveAndrew Gerrand
R=r CC=golang-dev https://golang.org/cl/4128060
2011-02-10fmt: fix minor typoRoger Peppe
R=r, r2 CC=golang-dev https://golang.org/cl/4187041
2011-02-10json: correct Marshal documentationAndrew Gerrand
Fixes #1488. R=r, rsc, rog CC=golang-dev https://golang.org/cl/4168043
2011-02-10debug/pe: ImportedSymbols fixesWei Guangjing
R=golang-dev, brainman, mattn, rsc CC=golang-dev https://golang.org/cl/4001058
2011-02-10crypto/openpgp/packet: four more packet types.Adam Langley
R=bradfitzgo CC=golang-dev https://golang.org/cl/4156044
2011-02-10runtime: take the callback return value from the stackHector Chu
R=brainman, lxn, rsc CC=golang-dev https://golang.org/cl/4126056
2011-02-09src/*: fix incorrect prints found by govetRob Pike
R=gri CC=golang-dev https://golang.org/cl/4169044
2011-02-09peep: more bugsKen Thompson
R=r CC=golang-dev https://golang.org/cl/4176042
2011-02-09buffer.go: minor optimization, expanded commentRobert Griesemer
R=r CC=golang-dev https://golang.org/cl/4169043
2011-02-09godoc: optimizations: don't call Write for 0-length dataRobert Griesemer
- guard some calls to Write that frequently may have 0-length data - fix an invariant R=r CC=golang-dev https://golang.org/cl/4179041
2011-02-09template: reverse order of arguments to ExecuteRob Pike
In line with other functions such as Fprintf, put the thing to be written first. Apologies for the breakages this is sure to cause. R=rsc, gri, adg, eds, r2, aam CC=golang-dev https://golang.org/cl/4169042
2011-02-09srcextract: HTML-escape output if so desiredRobert Griesemer
This functionality was removed with CL 4169041. Minor simplifications. R=r, adg CC=golang-dev https://golang.org/cl/4171042
2011-02-09peep: bug fixKen Thompson
R=r CC=golang-dev https://golang.org/cl/4173041
2011-02-09run.bash: must make codelab before we can test it.Rob Pike
this will break the build, but it's already silently broken. R=rsc CC=golang-dev https://golang.org/cl/4168041