From: Rob Pike Date: Wed, 15 Apr 2015 16:01:38 +0000 (-0700) Subject: doc/go1.5.txt: io.CopyBuffer and new reflect.Value handling in fmt X-Git-Tag: go1.5beta1~1105 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=40db92f288aede5e0372776802df6a9d689e8dfa;p=gostls13.git doc/go1.5.txt: io.CopyBuffer and new reflect.Value handling in fmt Change-Id: Ia0d7c2f08f8f124bcd62c7f9744227812d68903d Reviewed-on: https://go-review.googlesource.com/8941 Reviewed-by: Rob Pike --- diff --git a/doc/go1.5.txt b/doc/go1.5.txt index d0259f15a5..a98f83aa99 100644 --- a/doc/go1.5.txt +++ b/doc/go1.5.txt @@ -29,7 +29,9 @@ database/sql: add Stats (https://golang.org/cl/7950) encoding/base64: add unpadded encodings (https://golang.org/cl/1511) flag: new nicer format for PrintDefaults (https://golang.org/cl/7330) fmt: empty slices now print nothing with %x (bug fix) (https://golang.org/cl/8864) +fmt: reflect.Value now prints what it holds (https://golang.org/cl/8731) go/ast: add Implicit field to ast.EmptyStmt; changed meaning of ast.EmptyStmt.Semicolon position (https://golang.org/cl/5720) +io: add CopyBuffer, Copy with user-provided buffer (https://golang.org/cl/8730) log: add SetOutput functions (https://golang.org/cl/2686, https://golang.org/cl/3023) log: add LUTC flag (https://golang.org/cl/8761) math/big: add arbitrary precision Floats (many cl's)