From 1ff8717aeb0f96f840b8fdc126622bfee3e8fe47 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 18 Jul 2018 15:29:32 -0700 Subject: [PATCH] doc: fill in final standard library TODOs in go1.11.html Change-Id: Ic1ff580573711a6c91c1d5e3eb019a298a2fec49 Reviewed-on: https://go-review.googlesource.com/124837 Reviewed-by: Ian Lance Taylor --- doc/go1.11.html | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/doc/go1.11.html b/doc/go1.11.html index 036c873630..3be9c40fc2 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -558,7 +558,15 @@ for k := range m {
mime/multipart

- TODO: https://golang.org/cl/121055: restore 1.9 handling of missing/empty form-data file name + The handling of form-data with missing/empty file names has been + restored to the behavior in Go 1.9: in the + Form for + the form-data part the value is available in + the Value field rather than the File + field. In Go releases 1.10 through 1.10.3 a form-data part with + a missing/empty file name and a non-empty "Content-Type" field + was stored in the File field. This change was a + mistake in 1.10 and has been reverted to the 1.9 behavior.

@@ -581,7 +589,8 @@ for k := range m {

- TODO: https://golang.org/cl/76391: implement (*syscall.RawConn).Read/Write on Windows + The syscall.RawConn Read + and Write methods now work correctly on Windows.

@@ -593,7 +602,12 @@ for k := range m {

- TODO: https://golang.org/cl/108297: calling File leaves the socket in nonblocking mode + The TCPConn.File, + UDPConn.File, + UnixConn.File, + and IPConn.File + methods no longer put the returned *os.File into + blocking mode.

@@ -685,7 +699,13 @@ for k := range m {

- TODO: https://golang.org/cl/100077: use poller when NewFile is called with a blocking descriptor. + When a non-blocking descriptor is passed + to NewFile, the + resulting *File will be kept in non-blocking + mode. This means that I/O for that *File will use + the runtime poller rather than a separate thread, and that + the SetDeadline + methods will work.

-- 2.48.1