diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-18 00:30:24 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-18 00:30:24 (GMT) |
commit | 93c8cad6d75432a69f3c7fe159d1542ec81bd5e7 (patch) | |
tree | e2dbcc179dc470774be2c9512a7e065e800a367c /Doc/whatsnew | |
parent | 7ec790d1fa543166fcc5cd0036dc7c4e4fdc120a (diff) | |
download | cpython-93c8cad6d75432a69f3c7fe159d1542ec81bd5e7.zip cpython-93c8cad6d75432a69f3c7fe159d1542ec81bd5e7.tar.gz cpython-93c8cad6d75432a69f3c7fe159d1542ec81bd5e7.tar.bz2 |
More nits.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 2a9104d..0dd3061 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -513,21 +513,20 @@ Some smaller changes made to the core Python language are: This means that C structures like those returned by :func:`os.stat`, :func:`time.gmtime`, and :func:`sys.version_info` now work like a :term:`named tuple` and now work with functions and methods that - expect a tuple as an argument. The is a big step forward in making the C + expect a tuple as an argument. This is a big step forward in making the C structures as flexible as their pure Python counterparts. (Suggested by Arfrever Frehtes Taifersar Arahesis and implemented by Benjamin Peterson in :issue:`8413`.) -* Warnings are now easier to control. A :envvar:`PYTHONWARNINGS` environment - variable is now available as an alternative to using ``-W`` at the command - line. +* Warnings are now easier to contro b using the :envvar:`PYTHONWARNINGS` + environment variable as an alternative to using ``-W`` at the command line. (Suggested by Barry Warsaw and implemented by Philip Jenvey in :issue:`7301`.) * A new warning category, :exc:`ResourceWarning`, has been added. It is emitted when potential issues with resource consumption or cleanup - are detected. It is silenced by default in normal release builds, but + are detected. It is silenced by default in normal release builds but can be enabled through the means provided by the :mod:`warnings` module, or on the command line. @@ -579,7 +578,7 @@ Some smaller changes made to the core Python language are: (See :issue:`10518`.) -* Python's import mechanism can now load module installed in directories with +* Python's import mechanism can now load modules installed in directories with non-ASCII characters in the path name. (Required extensive work by Victor Stinner in :issue:`9425`.) |