An error occurred fetching the project authors.
  1. 23 Dec, 2011 1 commit
  2. 05 Dec, 2011 1 commit
    • Russ Cox's avatar
      use new strconv API · 2666b815
      Russ Cox authored
      All but 3 cases (in gcimporter.go and hixie.go)
      are automatic conversions using gofix.
      
      No attempt is made to use the new Append functions
      even though there are definitely opportunities.
      
      R=golang-dev, gri
      CC=golang-dev
      https://golang.org/cl/5447069
      2666b815
  3. 02 Nov, 2011 1 commit
  4. 15 Sep, 2011 1 commit
  5. 31 Aug, 2011 1 commit
  6. 10 Jul, 2011 1 commit
    • Rob Pike's avatar
      flag: make -help nicer. · e44853c9
      Rob Pike authored
      - suppress the print that -help is not defined.
      - return a special error code if -help is set
      - do not change behavior if an explict "help" flag is defined.
      
      R=golang-dev, dsymonds
      CC=golang-dev
      https://golang.org/cl/4641099
      e44853c9
  7. 10 Jun, 2011 1 commit
  8. 22 May, 2011 1 commit
  9. 21 May, 2011 1 commit
    • Rob Pike's avatar
      flags: allow distinct sets of flags. · f4fe688b
      Rob Pike authored
      A FlagSet is an independent set of flags that may be used,
      for example, to provide flag processing for subcommands
      in a CLI.  The standard, os.Args-derived set of flags is a
      global but non-exported FlagSet and the standard functions
      are wrappers for methods of that FlagSet.
      
      Allow the programmer to control whether the program
      exits if there is a parse error.  For the default set, the behavior
      remains to exit on error.
      
      The handling of Usage is odd due to backward compatibility.
      
      R=golang-dev, bradfitz, r, bradfitz
      CC=golang-dev
      https://golang.org/cl/4517092
      f4fe688b
  10. 19 May, 2011 1 commit
  11. 19 Apr, 2011 1 commit
  12. 25 Mar, 2011 1 commit
  13. 20 Mar, 2011 1 commit
  14. 17 Mar, 2011 1 commit
  15. 10 Mar, 2011 1 commit
  16. 08 Mar, 2011 2 commits
  17. 11 Feb, 2011 1 commit
  18. 20 Jan, 2011 1 commit
  19. 07 Dec, 2010 1 commit
  20. 06 Dec, 2010 1 commit
  21. 15 Apr, 2010 1 commit
  22. 06 Apr, 2010 1 commit
  23. 30 Mar, 2010 2 commits
  24. 25 Mar, 2010 1 commit
  25. 15 Dec, 2009 1 commit
    • Robert Griesemer's avatar
      1) Change default gofmt default settings for · 1c729599
      Robert Griesemer authored
                        parsing and printing to new syntax.
      
                        Use -oldparser to parse the old syntax,
                        use -oldprinter to print the old syntax.
      
                     2) Change default gofmt formatting settings
                        to use tabs for indentation only and to use
                        spaces for alignment. This will make the code
                        alignment insensitive to an editor's tabwidth.
      
                        Use -spaces=false to use tabs for alignment.
      
                     3) Manually changed src/exp/parser/parser_test.go
                        so that it doesn't try to parse the parser's
                        source files using the old syntax (they have
                        new syntax now).
      
                     4) gofmt -w src misc test/bench
      
      	       2nd set of files.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/179067
      1c729599
  26. 20 Nov, 2009 1 commit
  27. 13 Nov, 2009 1 commit
  28. 10 Nov, 2009 1 commit
  29. 09 Nov, 2009 1 commit
  30. 07 Nov, 2009 1 commit
  31. 06 Nov, 2009 1 commit
  32. 05 Nov, 2009 1 commit
  33. 08 Oct, 2009 1 commit
  34. 06 Oct, 2009 1 commit
  35. 15 Sep, 2009 1 commit
    • Russ Cox's avatar
      more "declared and not used". · ca6a0fee
      Russ Cox authored
      the last round omitted := range and only
      checked 1 out of N vars in a multi-var :=
      
      R=r
      OCL=34624
      CL=34638
      ca6a0fee
  36. 12 Aug, 2009 2 commits
    • Russ Cox's avatar
      delete forward type declarations · b5c57fea
      Russ Cox authored
      R=r
      DELTA=163  (1 added, 149 deleted, 13 changed)
      OCL=33106
      CL=33111
      b5c57fea
    • 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
  37. 17 Jul, 2009 1 commit