An error occurred fetching the project authors.
  1. 08 Oct, 2009 1 commit
  2. 07 Oct, 2009 1 commit
  3. 12 Aug, 2009 1 commit
    • Russ Cox's avatar
      convert low-level (used by testing) packages to · 3b864e41
      Russ Cox authored
      whole-package compilation.  new Makefiles,
      tests now in separate package
      
      	bytes
      	flag
      	fmt
      	io
      	math
      	once
      	os
      	reflect
      	strconv
      	sync
      	time
      	utf8
      
      delete import "xxx" in package xxx.
      
      inside package xxx, xxx is not declared
      anymore so s/xxx.//g
      
      delete file and package level forward declarations.
      
      note the new internal_test.go and sync
      and strconv to provide public access to
      internals during testing.  the installed version
      of the package omits that file and thus does
      not open the internals to all clients.
      
      R=r
      OCL=33065
      CL=33097
      3b864e41
  4. 26 Jun, 2009 1 commit
    • Russ Cox's avatar
      Change os.Error convention: · a0bcaf4c
      Russ Cox authored
      echo back context of call in error if likely to be useful.
      
      For example, if os.Open("/etc/passwd", os.O_RDONLY)
      fails with syscall.EPERM, it returns as the os.Error
      
      	&PathError{
      		Op: "open",
      		Path: "/etc/passwd"
      		Error: os.EPERM
      	}
      
      which formats as
      
      	open /etc/passwd: permission denied
      
      Not converted:
      
      	datafmt
      	go/...
      	google/...
      	regexp
      	tabwriter
      	template
      
      R=r
      DELTA=1153  (561 added, 156 deleted, 436 changed)
      OCL=30738
      CL=30781
      a0bcaf4c
  5. 09 Jun, 2009 1 commit
    • Rob Pike's avatar
      mv src/lib to src/pkg · d90e7cba
      Rob Pike authored
      tests: all.bash passes, gobuild still works, godoc still works.
      
      R=rsc
      OCL=30096
      CL=30102
      d90e7cba
  6. 17 Apr, 2009 1 commit
  7. 05 Mar, 2009 1 commit
    • Russ Cox's avatar
      strconv: doc · 5bf0fbe7
      Russ Cox authored
      R=r
      DELTA=110  (64 added, 19 deleted, 27 changed)
      OCL=25761
      CL=25782
      5bf0fbe7
  8. 03 Mar, 2009 1 commit
  9. 13 Feb, 2009 1 commit
  10. 23 Jan, 2009 1 commit
  11. 20 Jan, 2009 1 commit
  12. 16 Jan, 2009 3 commits
  13. 06 Jan, 2009 1 commit
  14. 19 Dec, 2008 1 commit
  15. 03 Dec, 2008 1 commit
  16. 01 Dec, 2008 1 commit
  17. 19 Nov, 2008 2 commits
  18. 18 Nov, 2008 1 commit
    • Russ Cox's avatar
      * faster atof for common cases · ed628ca7
      Russ Cox authored
        (gets 3x speedup in go; got 40x in c)
      * handle and test overflow
      
      R=r
      DELTA=217  (200 added, 0 deleted, 17 changed)
      OCL=19399
      CL=19422
      ed628ca7
  19. 17 Nov, 2008 1 commit