summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2010-02-05 18:52:05 (GMT)
committerBarry Warsaw <barry@python.org>2010-02-05 18:52:05 (GMT)
commit730820f978f736867c4f8166edb75d26a2c38f81 (patch)
tree542eeee4eda2296ec8c5cf81fea31f17cb9b35da /Misc
parent2483728850cc3c12920d7794ac01a3e890995622 (diff)
downloadcpython-730820f978f736867c4f8166edb75d26a2c38f81.zip
cpython-730820f978f736867c4f8166edb75d26a2c38f81.tar.gz
cpython-730820f978f736867c4f8166edb75d26a2c38f81.tar.bz2
Merged revisions 77992 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77992 | barry.warsaw | 2010-02-05 13:45:25 -0500 (Fri, 05 Feb 2010) | 4 lines Resolve bug 7847 by including documentation for -J, -U, and -X under "Options you shouldn't use". ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS14
1 files changed, 9 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d6c81b3..eaa82df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,7 +34,8 @@ Core and Builtins
used to drop the time part of the result.
- Issue #6108: unicode(exception) and str(exception) should return the same
- message when only __str__ (and not __unicode__) is overridden in the subclass.
+ message when only __str__ (and not __unicode__) is overridden in the
+ subclass.
- Issue #7491: Metaclass's __cmp__ method was ignored.
@@ -134,8 +135,8 @@ Library
- Issue #1923: Fixed the removal of meaningful spaces when PKG-INFO is
generated in Distutils. Patch by Stephen Emslie.
-- Issue #4120: Drop reference to CRT from manifest when building extensions with
- msvc9compiler.
+- Issue #4120: Drop reference to CRT from manifest when building extensions
+ with msvc9compiler.
- Issue #7410: deepcopy of itertools.count() erroneously reset the count.
@@ -222,12 +223,15 @@ Build
binary distribution on OSX 10.6 even when the user does not
have the 10.4u SDK installed.
-- Issue #7541: when using ``python-config`` with a framework install the compiler might
- use the wrong library.
+- Issue #7541: when using ``python-config`` with a framework install the
+ compiler might use the wrong library.
Documentation
-------------
+- Updating `Using Python` documentation to include description of CPython's
+ -J, -U and -X options.
+
- Update python manual page (options -B, -O0, -s, environment variables
PYTHONDONTWRITEBYTECODE, PYTHONNOUSERSITE).