1. 06 May, 2009 1 commit
  2. 05 May, 2009 1 commit
  3. 16 Apr, 2009 1 commit
    • Russ Cox's avatar
      code changes for array conversion. · 60ce95d7
      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
      60ce95d7
  4. 26 Mar, 2009 1 commit
  5. 07 Mar, 2009 1 commit
  6. 03 Mar, 2009 1 commit
  7. 13 Feb, 2009 1 commit
  8. 07 Feb, 2009 1 commit
    • Rob Pike's avatar
      portable stat for os · 704bc9d5
      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
      704bc9d5
  9. 20 Jan, 2009 1 commit
  10. 16 Jan, 2009 1 commit
    • Russ Cox's avatar
      casify misc · aedfb397
      Russ Cox authored
      R=r
      DELTA=247  (20 added, 50 deleted, 177 changed)
      OCL=22951
      CL=22955
      aedfb397
  11. 06 Jan, 2009 1 commit
  12. 19 Dec, 2008 1 commit
  13. 05 Dec, 2008 1 commit
  14. 24 Nov, 2008 3 commits
    • Russ Cox's avatar
      replay CL 19916 and CL 19913 now that the build can handle them · 387df5e1
      Russ Cox authored
      TBR=r
      OCL=19924
      CL=19934
      387df5e1
    • Russ Cox's avatar
      Automated g4 rollback of changelist 19916. · 85fea81d
      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
      85fea81d
    • Russ Cox's avatar
      utf8: add InString routines for decoding in strings · b65a9304
      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
      b65a9304
  15. 22 Nov, 2008 1 commit
    • Russ Cox's avatar
      utf8 routines in go; a start. · 5169bb44
      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
      5169bb44