summaryrefslogtreecommitdiff
path: root/src/pkg/encoding/git85/git_test.go
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-4/+4
2010-02-25strings: delete Runes, BytesRuss Cox1-6/+5
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-02fix build - misc ... vs ...T fixesRuss Cox1-6/+2
TBR=r CC=golang-dev http://codereview.appspot.com/198081
2009-12-15 1) Change default gofmt default settings forRobert Griesemer1-65/+65
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 http://codereview.appspot.com/179067
2009-12-09remove uses of string concatenation from src and misc directoryRobert Griesemer1-8/+8
R=rsc http://codereview.appspot.com/172041
2009-12-02move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package.Rob Pike1-4/+4
this breaks the dependency of package io on package bytes. R=rsc CC=golang-dev http://codereview.appspot.com/163085
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer1-1/+1
rsc's algorithm - applied gofmt -w misc src - partial CL (remaining files in other CLs) R=rsc, r http://go/go-review/1026036
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-13/+13
R=rsc, r http://go/go-review/1025029
2009-11-05gofmt-ify io, json, runtime, encodingRobert Griesemer1-8/+8
R=rsc http://go/go-review/1017056
2009-11-05gofmt-ify encodingRobert Griesemer1-3/+3
R=rsc http://go/go-review/1017048
2009-11-03encoding/*: reverse the order of src, dst so that dst is first.Adam Langley1-3/+3
R=rsc CC=go-dev http://go/go-review/1017021
2009-10-20base64 -> encoding/base64Russ Cox1-0/+199
base85 -> encoding/ascii85, encoding/git85 debug/binary -> encoding/binary R=r DELTA=3190 (1884 added, 1297 deleted, 9 changed) OCL=35923 CL=35929