From: Joe Tsai yacc (previously available via
âgo tool yaccâ)
has been removed. As of Go 1.7 it was no longer used by the Go compiler.
-It has moved to the âtoolsâ repo and is and is available via
+It has moved to the âtoolsâ repository and is and is available via
go get golang.org/x/tools/cmd/goyacc.
go bugâ command helps users file bug report
The runtime's MemStats
- type has been more throroughly documented.
+ type has been more thoroughly documented.
The tar implementation corrects many bugs in corner cases of the file format.
- The Reader is now able to process tar files in the PAX format with entries larger than 8GB.
- The Writer no longer produces invalid tar files in some situations involving long pathnames.
+ The Reader
+ is now able to process tar files in the PAX format with entries larger than 8GB.
+ The Writer
+ no longer produces invalid tar files in some situations involving long pathnames.
There have been some minor fixes to the encoder to improve the
compression ratio in certain situations. As a result, the exact
- encoded output of DEFLATE may be different from Go 1.7. Since
- DEFLATE is the underlying compression of gzip, ping, zlib, and zip,
+ encoded output of DEFLATE may be different from Go 1.7. Since
+ DEFLATE is the underlying compression of gzip, png, zlib, and zip,
those formats may have changed outputs.
Reader
now updates the Header.ModTime field only if the
- encoded MTIME field is non-zero.
+ encoded MTIME field is non-zero.
-
- The DeadlineExceeded error now implements
+ The DeadlineExceeded
+ error now implements
net.Error
and reports true for both the Timeout and
Temporary methods.