]> granicus.if.org Git - python/commitdiff
rephrase
authorBenjamin Peterson <benjamin@python.org>
Thu, 6 May 2010 22:29:53 +0000 (22:29 +0000)
committerBenjamin Peterson <benjamin@python.org>
Thu, 6 May 2010 22:29:53 +0000 (22:29 +0000)
Misc/NEWS

index fdb9253b5b6790ce9c84a7643e52ab0f319c507e..e27c1297c1ac6336ffcf8fd8542a461e67ad7721 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -348,11 +348,10 @@ C-API
 Library
 -------
 
-- Issue #8603: Create a bytes version of os.environ for Unix: create
-  os.environb mapping and os.getenvb() function, os.unsetenv() encodes str
-  argument to the file system encoding with the surrogateescape error handler
-  (instead of utf8/strict) and accepts bytes, and posix.environ keys and values
-  are bytes.
+- Issue #8603: Support bytes environmental variables on Unix: Add os.environb
+  mapping and os.getenvb() function. os.unsetenv() encodes str argument to the
+  file system encoding with the surrogateescape error handler (instead of
+  utf8/strict) and accepts bytes. posix.environ keys and values are now bytes.
 
 - Issue #8573: asyncore _strerror() function might throw ValueError.