diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-14 20:45:17 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-14 20:45:17 (GMT) |
commit | 55fc9ce7e1db294df9a7affa44eeab1a66acefac (patch) | |
tree | a317b54345d4c0165f1929f7314570c1a57666c1 | |
parent | d621dd7ecda096abf4db6f56a8ba90ea3bf755ef (diff) | |
download | cpython-55fc9ce7e1db294df9a7affa44eeab1a66acefac.zip cpython-55fc9ce7e1db294df9a7affa44eeab1a66acefac.tar.gz cpython-55fc9ce7e1db294df9a7affa44eeab1a66acefac.tar.bz2 |
Fix links
-rw-r--r-- | Doc/whatsnew/3.1.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst index c6fd6d1..3057ea3 100644 --- a/Doc/whatsnew/3.1.rst +++ b/Doc/whatsnew/3.1.rst @@ -103,7 +103,7 @@ for thousands separators. .. seealso:: :pep:`378` - Format Specifier for Thousands Separator - PEP written by Raymond Hettinger; implemented by Eric Smith and + PEP written by Raymond Hettinger and implemented by Eric Smith and Mark Dickinson. @@ -279,7 +279,8 @@ New, Improved, and Deprecated Modules def test_gimzo_without_required_library(self): ... - Also, tests for exceptions have been builtout to work with context managers:: + Also, tests for exceptions have been builtout to work with context managers + using the :keyword:`with` statement:: def test_division_by_zero(self): with self.assertRaises(ZeroDivisionError): @@ -305,7 +306,7 @@ New, Improved, and Deprecated Modules (Contributed by Ross Light; :issue:`4285`.) * A new module, :mod:`importlib` was added. It provides a complete, portable, - pure Python reference implementation of the *import* statement and its + pure Python reference implementation of the :keyword:`import` statement and its counterpart, the :func:`__import__` function. It represents a substantial step forward in documenting and defining the actions that take place during imports. |