diff options
author | Georg Brandl <georg@python.org> | 2008-01-07 17:09:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-07 17:09:35 (GMT) |
commit | 2da0fceba7dd70334aacbab0708a8cbdff92e31d (patch) | |
tree | f93838b60f3c3216db03eaa24b32f4dc92389230 /Misc | |
parent | b3255ed8c937510076b641db28ab052ddaee1178 (diff) | |
download | cpython-2da0fceba7dd70334aacbab0708a8cbdff92e31d.zip cpython-2da0fceba7dd70334aacbab0708a8cbdff92e31d.tar.gz cpython-2da0fceba7dd70334aacbab0708a8cbdff92e31d.tar.bz2 |
Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Patch #602345: Add -B command line option, PYTHONDONTWRITEBYTECODE envvar + and sys.dont_write_bytecode attribute. All these can be set to forbid Python + to attempt to write compiled bytecode files. + - Improve some exception messages when Windows fails to load an extension module. Now we get for example '%1 is not a valid Win32 application' instead of 'error code 193'. |