diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-05-06 22:29:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-05-06 22:29:53 (GMT) |
commit | 225168ed5653a678be7f41e1b0ebc9d501258c23 (patch) | |
tree | 2474fad0312b96602dcde3cfb4484028bf29bdc8 | |
parent | 932d3f417718a955f53ff2430e3565908c2f91d6 (diff) | |
download | cpython-225168ed5653a678be7f41e1b0ebc9d501258c23.zip cpython-225168ed5653a678be7f41e1b0ebc9d501258c23.tar.gz cpython-225168ed5653a678be7f41e1b0ebc9d501258c23.tar.bz2 |
rephrase
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -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. |