aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2010-03-03net: put [ ] around IPv6 addresses for DialRuss Cox
2010-03-03net: fix nil deref in testTimeout when Dial failsRuss Cox
2010-03-03gc: fix imported and not used message - show pathRuss Cox
2010-03-03encoding/binary: fix error reporting bugRob Pike
2010-03-03net: fix network timeout boundary condition.Stephen Ma
2010-03-03net: correct DNS configurationStephen Ma
2010-03-02more on type complex.Ken Thompson
2010-03-02gofmt: fix alignment of multi-line var declarationsRobert Griesemer
2010-03-03http: corrected comment for Response.GetHeader.Andrew Gerrand
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer
2010-03-02strings.Bytes -> []byte for documentation example, src/pkg/* comments, and ht...Andrey Mirtchovski
2010-02-28gotest: set $AS to $GOBIN/$ASAndrew Gerrand
2010-02-28Count utf8 runes, not bytes when determining string width. NoteStephen Ma
2010-02-26testing/benchmark: paranoia - make sure n always growsRuss Cox
2010-02-26crypto/blowfish: new packageRaif S. Naffah
2010-02-26go/parser cleanup: remove some state by writing more functional codeRobert Griesemer
2010-02-268g: fix out of register bug in byte(x) codeRuss Cox
2010-02-26Add -r option to 6l/8l/5l.Ian Lance Taylor
2010-02-268g: make a[byte(x)] truncate xRuss Cox
2010-02-26go/scanner: the position of '\n's chars must be the last position of the curr...Robert Griesemer
2010-02-26Fix a couple of bugs referencing data values in template.Micah Stetson
2010-02-25use []byte("abc") in place of []byte{'a', 'b', 'c'}Russ Cox
2010-02-25go/printer, gofmt: align comments in multi-line expression listsRobert Griesemer
2010-02-25strings: delete Runes, BytesRuss Cox
2010-02-25tabwriter: make use of new []byte() conversionRobert Griesemer
2010-02-25gc: implement []int(string) and []byte(string)Russ Cox
2010-02-25Fix small typo in net package.Stephen Weinberg
2010-02-25go/printer, gofmt: correct indentation after certain /*-style commentsRobert Griesemer
2010-02-25tabwriter: indicate section breaks if Debug flag is setRobert Griesemer
2010-02-25Use consistent types in .h file and .c file.Ian Lance Taylor
2010-02-25strings: remove a couple of redundant testsRobert Griesemer
2010-02-25path: Fix bug in Match with non-greedy starsKevin Ballard
2010-02-25%q in fmt: if the object is a Stringer, use String() to get the value to quote.Rob Pike
2010-02-24go/scanner: support for complex (imaginary) constantsRobert Griesemer
2010-02-24Install runtime.h and cgocall.h.Ian Lance Taylor
2010-02-24go/ast: streamline representation of field listsRobert Griesemer
2010-02-24path: add MatchRuss Cox
2010-02-24http: fix handling of Close, use Close in http.PostRuss Cox
2010-02-24gofmt: don't print ()'s around function-typed results (not needed anymore)Robert Griesemer
2010-02-24go/printer: use general comment intersperse mechanism everywhereRobert Griesemer
2010-02-23crypto package documentation fixMark Zavislak
2010-02-23goyacc: fix handling of / and comments in goyaccRob Pike
2010-02-22runtime: work around Linux kernel bug in futexRuss Cox
2010-02-22net: disable UDP server testRuss Cox
2010-02-22math: add lgamma; in-line special cases of acosh, nextafterCharles L. Dorian
2010-02-23Fix xgb/example.go typo.Nigel Tao
2010-02-22go/printer (gofmt): remove more residue from semicolon transitionRobert Griesemer
2010-02-22http: use RawURL in Request.WritePetar Maymounkov
2010-02-22xml: treat bool as value in UnmarshalMichael Hoisie
2010-02-22http: fix bug in PostPetar Maymounkov