From: Andrew Bonventre Date: Mon, 10 Jun 2019 21:37:34 +0000 (-0400) Subject: doc: add release notes for os and os/exec X-Git-Tag: go1.13beta1~97 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5f94d44722c49db52700a9e100029394a97fd5a3;p=gostls13.git doc: add release notes for os and os/exec Change-Id: I34fd45ee252474c12f2e9c8d9b1a75b9eabb57f2 Reviewed-on: https://go-review.googlesource.com/c/go/+/181549 Reviewed-by: Bryan C. Mills --- diff --git a/doc/go1.13.html b/doc/go1.13.html index 5caae1315d..7bcc8af32c 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -252,7 +252,8 @@ TODO
os

- TODO: https://golang.org/cl/166578: reject WriteAt if file opened in append mode + If a File is opened using the O_APPEND flag, its + WriteAt method will always return an error.

@@ -260,7 +261,9 @@ TODO
os/exec

- TODO: https://golang.org/cl/174318: always set SYSTEMROOT on Windows if not listed in Cmd.Env + On Windows, the environment for a Cmd always inherits the + %SYSTEMROOT% value of the parent process unless the + Cmd.Env field includes an explicit value for it.