summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/2.5.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-08-15 15:22:58 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-08-15 15:22:58 (GMT)
commitc7b8f809e773209dd12fa67af867786219d834e5 (patch)
tree79cc04672c622898bf3e308b5beefe2e056815e9 /Doc/whatsnew/2.5.rst
parent5618aaaafeb18e49cb80ce28c63407db48d12c4b (diff)
downloadcpython-c7b8f809e773209dd12fa67af867786219d834e5.zip
cpython-c7b8f809e773209dd12fa67af867786219d834e5.tar.gz
cpython-c7b8f809e773209dd12fa67af867786219d834e5.tar.bz2
#15543: reflow paragraphs.
Diffstat (limited to 'Doc/whatsnew/2.5.rst')
-rw-r--r--Doc/whatsnew/2.5.rst11
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/whatsnew/2.5.rst b/Doc/whatsnew/2.5.rst
index 5033024..e059cd5 100644
--- a/Doc/whatsnew/2.5.rst
+++ b/Doc/whatsnew/2.5.rst
@@ -1343,11 +1343,12 @@ complete list of changes, or look through the SVN logs for all the details.
* The :mod:`fileinput` module was made more flexible. Unicode filenames are now
supported, and a *mode* parameter that defaults to ``"r"`` was added to the
- :func:`input` function to allow opening files in binary or :term:`universal newlines`
- mode. Another new parameter, *openhook*, lets you use a function other than
- :func:`open` to open the input files. Once you're iterating over the set of
- files, the :class:`FileInput` object's new :meth:`fileno` returns the file
- descriptor for the currently opened file. (Contributed by Georg Brandl.)
+ :func:`input` function to allow opening files in binary or :term:`universal
+ newlines` mode. Another new parameter, *openhook*, lets you use a function
+ other than :func:`open` to open the input files. Once you're iterating over
+ the set of files, the :class:`FileInput` object's new :meth:`fileno` returns
+ the file descriptor for the currently opened file. (Contributed by Georg
+ Brandl.)
* In the :mod:`gc` module, the new :func:`get_count` function returns a 3-tuple
containing the current collection counts for the three GC generations. This is