This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Arfrever, ezio.melotti, gregory.p.smith, lemburg, loewis, pitrou, vstinner
Date 2010-05-06.13:03:42
SpamBayes Score 0.00017542462
Marked as misclassified No
Message-id <1273151031.44.0.984713968797.issue8603@psf.upfronthosting.co.za>
In-reply-to
Content
Patch version 3:
 - update posix documentation
 - improve os.environ and os.getenv() documentation: specify the type and document the encoding/error handler, add a link to environb/getenvb
 - os.environ and os.environb now check the argument types (raise a better error), on Windows and Unix. Before my patch, os.environ[b'key']=b'value' sets the variable "b'key'" to "b'value'" :-(
 - restore os.environb in TestEnviron.tearDown() (test_os)
 - fix patch on posixmodule.c indentation
 - fix a regression introduced by my patch: set PyErr_NoMemory() on error  (newstr==NULL in posixmodule.c)
 - rename keymap to encodekey
History
Date User Action Args
2010-05-06 13:03:51vstinnersetrecipients: + vstinner, lemburg, loewis, gregory.p.smith, pitrou, ezio.melotti, Arfrever
2010-05-06 13:03:51vstinnersetmessageid: <1273151031.44.0.984713968797.issue8603@psf.upfronthosting.co.za>
2010-05-06 13:03:47vstinnerlinkissue8603 messages
2010-05-06 13:03:47vstinnercreate