summaryrefslogtreecommitdiff
path: root/src/lib/io/pipe_test.go
AgeCommit message (Collapse)AuthorFilesLines
2009-06-09mv src/lib to src/pkgRob Pike1-225/+0
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102
2009-06-06Publish types PipeReader and PipeWriterRuss Cox1-55/+77
to expose new CloseWithError methods. R=r DELTA=161 (72 added, 15 deleted, 74 changed) OCL=29980 CL=30003
2009-05-08Name change to improve embeddability:Rob Pike1-11/+11
io.Read->io.Reader io.Write,Close,etc.->io.Writer,Closer etc. R=rsc DELTA=190 (0 added, 0 deleted, 190 changed) OCL=28525 CL=28535
2009-04-15code changes for array conversion.Russ Cox1-6/+6
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
2009-04-03fix both of anton's bugs:Russ Cox1-1/+1
* make([100]int) was being compiled to make([]int), kind of. * []this = [100]that was working for any this, that. turned up a typo in pipe_test.go R=ken OCL=27081 CL=27081
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox1-1/+1
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-16io.PipeRuss Cox1-0/+203
assorted underscore cleanup R=r DELTA=488 (410 added, 3 deleted, 75 changed) OCL=25070 CL=25070