- 06 May, 2009 1 commit
-
-
Rob Pike authored
no substantive changes except: - new Makefiles, all auto-generated - go/src/lib/Makefile has been extensively edited R=rsc OCL=28310 CL=28310
-
- 05 May, 2009 1 commit
-
-
Rob Pike authored
R=rsc DELTA=6 (1 added, 0 deleted, 5 changed) OCL=28242 CL=28256
-
- 16 Apr, 2009 1 commit
-
-
Russ Cox authored
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
-
- 26 Mar, 2009 1 commit
-
-
Robert Griesemer authored
R=rsc DELTA=22 (22 added, 0 deleted, 0 changed) OCL=26779 CL=26792
-
- 07 Mar, 2009 1 commit
-
-
Rob Pike authored
R=rsc DELTA=8 (0 added, 5 deleted, 3 changed) OCL=25857 CL=25861
-
- 03 Mar, 2009 1 commit
-
-
Russ Cox authored
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
-
- 13 Feb, 2009 1 commit
-
-
Russ Cox authored
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
-
- 07 Feb, 2009 1 commit
-
-
Rob Pike authored
add name to os.FD clean up some interfaces R=rsc DELTA=318 (231 added, 44 deleted, 43 changed) OCL=24624 CL=24627
-
- 20 Jan, 2009 1 commit
-
-
Russ Cox authored
TBR=r OCL=23121 CL=23127
-
- 16 Jan, 2009 1 commit
-
-
Russ Cox authored
R=r DELTA=247 (20 added, 50 deleted, 177 changed) OCL=22951 CL=22955
-
- 06 Jan, 2009 1 commit
-
-
Rob Pike authored
R=rsc OCL=22170 CL=22170
-
- 19 Dec, 2008 1 commit
-
-
Russ Cox authored
R=r OCL=21563 CL=21571
-
- 05 Dec, 2008 1 commit
-
-
Russ Cox authored
R=r DELTA=94 (52 added, 33 deleted, 9 changed) OCL=20547 CL=20552
-
- 24 Nov, 2008 3 commits
-
-
Russ Cox authored
TBR=r OCL=19924 CL=19934
-
Russ Cox authored
*** Reason for rollback *** broke build *** Original change description *** utf8: add InString routines for decoding in strings reflect: add InterfaceValue.Get(), remove Empty strconv: add Quote, CanBackquote fmt: * %q go-quoted " string * %#q go-quoted ` string if possible, " string otherwise * %x hexadecimal string * anywhere a string is okay, *[]byte is okay * flags # 0 - + space * print value inside interface, not interface itself * tests TBR=r OCL=19920 CL=19920
-
Russ Cox authored
reflect: add InterfaceValue.Get(), remove Empty strconv: add Quote, CanBackquote fmt: * %q go-quoted " string * %#q go-quoted ` string if possible, " string otherwise * %x hexadecimal string * anywhere a string is okay, *[]byte is okay * flags # 0 - + space * print value inside interface, not interface itself * tests R=r DELTA=756 (597 added, 121 deleted, 38 changed) OCL=19888 CL=19916
-
- 22 Nov, 2008 1 commit
-
-
Russ Cox authored
also: * parse flags in testing.Main. * add make test in src/lib. R=r DELTA=323 (323 added, 0 deleted, 0 changed) OCL=19831 CL=19850
-