summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2010-06-16http: reply to Expect 100-continue requests automaticallyBrad Fitzpatrick2-0/+35
2010-06-16cmd/gotest: Delete temporary _testmain.go files.Nigel Tao1-1/+1
2010-06-16image: add an Alpha16 type, for completeness.Nigel Tao2-0/+69
2010-06-15fmt.Scan: fix %c in the case where the input does not implement ReadRune itself.Rob Pike2-29/+100
2010-06-15bytes.Buffer.ReadFrom: fix bug.Rob Pike1-1/+1
2010-06-14runtime: correct fault for 16-bit divide on LeopardRuss Cox2-2/+6
2010-06-14fmt.Printf: write tests for %T.Rob Pike2-1/+7
2010-06-14fmt.Print*: reimplement to switch on type first.Rob Pike5-625/+456
2010-06-15html: sync testdata/webkit to match WebKit tip.Nigel Tao1-0/+44
2010-06-14Add IndexFunc and LastIndexFunc.Roger Peppe2-36/+187
2010-06-14gc: no more ...Russ Cox17-838/+497
2010-06-14remove uses of ... from tree, add one testRuss Cox5-26/+47
2010-06-14exp/draw: small draw.drawGlyphOver optimization.Nigel Tao1-10/+11
2010-06-12gc: less aggressive name binding, for better line numbers in errorsRuss Cox8-82/+111
2010-06-12runtime: fix 386 signal handler bugRuss Cox2-15/+35
2010-06-12gopack: add S flag to force marking a package as safeRuss Cox2-4/+16
2010-06-118l: correct test for sp == top of stack in 8l -K codeRuss Cox1-1/+1
2010-06-11gopack: simplify go metadata codeRuss Cox1-314/+36
2010-06-11gc: change -u to require imports to be marked safeRuss Cox5-3/+22
2010-06-11Pad Go symbol table out to page boundary when linking dynamically.Ian Lance Taylor3-7/+11
2010-06-11runtime: switch to OS stack during Windows syscallAlex Brainman5-56/+163
2010-06-11runtime: free lock handles on WindowsAlex Brainman1-0/+2
2010-06-09add path.Base, analogous to Unix basenameRob Pike2-0/+45
2010-06-09asn1: allow '*' in PrintableString.Adam Langley2-1/+6
2010-06-09exp/eval test: fix buildRobert Griesemer1-3/+3
2010-06-09go/scanner: report illegal escape sequencesRobert Griesemer2-21/+30
2010-06-09gc: more cleanupRuss Cox5-39/+100
2010-06-08gc: new typechecking rulesRuss Cox17-938/+757
2010-06-08misc cleanup: gofmt + &x -> x[0:] conversionRuss Cox7-26/+33
2010-06-08go/printer: deleted dead codeRobert Griesemer2-23/+14
2010-06-08gofmt: update test script so it can run to completion againRobert Griesemer1-1/+2
2010-06-08go/parser: correct position of empty statement ';'Robert Griesemer3-10/+9
2010-06-07gc: better error message when ~ operator is foundRobert Griesemer1-1/+1
2010-06-07gc: backslash newline is not a legal escape sequence in stringsRobert Griesemer1-4/+0
2010-06-08http: add Head function for making HTTP HEAD requestsAndrew Gerrand2-1/+23
2010-06-07runtime: finish pchw -> tiny, added gettime for tinyDaniel Theophanes5-5/+17
2010-06-06http: fix erroneous commentAndrew Gerrand1-4/+4
2010-06-04HTML5 parser test data from WebKit.Nigel Tao24-0/+10233
2010-06-04Fixes issue 836.Nigel Tao2-1/+15
2010-06-03draw.Draw fast paths for the Over operator.Nigel Tao1-34/+93
2010-06-03Add Opaque method to the image types.Nigel Tao2-0/+102
2010-06-03fmt.Scan: %cRob Pike2-5/+23
2010-06-03io/ioutil: add TempFileRuss Cox3-0/+93
2010-06-03http: handle status 304 correctlyRuss Cox1-0/+11
2010-06-03fmt.Scan: field widthsRob Pike3-122/+290
2010-06-03math: fix typo in Exp2 benchmarkCharles L. Dorian1-1/+1
2010-06-03netchan: fix typo in testRob Pike1-1/+1
2010-06-03Fix typo in xml comments.Nigel Tao1-3/+1
2010-06-02 Optimization to regexp _CharClass: keep track of overall range ofKyle Consalus2-10/+48
2010-06-02math: Pow special cases (signed zero, IEEE 754-2008)Charles L. Dorian2-190/+245