summaryrefslogtreecommitdiff
path: root/src/pkg/path/path.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+162
2011-09-13Imported Upstream version 60Ondřej Surý1-162/+0
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-2/+2
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-64/+14
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-9/+11
2010-06-09add path.Base, analogous to Unix basenameRob Pike1-0/+22
R=rsc CC=golang-dev http://codereview.appspot.com/1633042
2010-04-09rename os.Dir to os.FileInfoRob Pike1-8/+8
R=rsc CC=golang-dev http://codereview.appspot.com/902042
2010-03-11math, path: minor comment fixesRobert Griesemer1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/444043
2010-02-25strings: delete Runes, BytesRuss Cox1-1/+1
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench delete unused imports R=r CC=golang-dev http://codereview.appspot.com/224062
2010-02-05path: make Join variadicStephen Weinberg1-6/+8
R=rsc, r CC=golang-dev http://codereview.appspot.com/198049 Committer: Russ Cox <rsc@golang.org>
2009-12-151) Change default gofmt default settings forRobert Griesemer1-35/+35
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 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049
2009-12-02move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package.Rob Pike1-2/+2
this breaks the dependency of package io on package bytes. R=rsc CC=golang-dev http://codereview.appspot.com/163085
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox1-2/+2
R=r, gri CC=golang-dev http://codereview.appspot.com/156115
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-3/+3
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-12/+12
R=rsc, r http://go/go-review/1025029
2009-11-05gofmt'ed various stragglersRobert Griesemer1-2/+2
R=rsc http://go/go-review/1022002
2009-10-19directory tree walk w/ visitor per rsc's suggestionRobert Griesemer1-1/+53
R=rsc,r DELTA=193 (191 added, 0 deleted, 2 changed) OCL=35849 CL=35877
2009-10-08more lgtm files from gofmtRuss Cox1-6/+5
R=gri OCL=35485 CL=35488
2009-09-14fix "declared and not used" errors in non-test code.Russ Cox1-1/+0
R=r DELTA=112 (6 added, 57 deleted, 49 changed) OCL=34610 CL=34610
2009-06-29io.StringBytes -> strings.BytesRuss Cox1-2/+2
io.ByteBuffer -> bytes.Buffer left io.ByteBuffer stub around for now, for protocol compiler. R=r OCL=30861 CL=30872
2009-06-09mv src/lib to src/pkgRob Pike1-0/+136
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102