diff options
author | Georg Brandl <georg@python.org> | 2010-04-25 10:19:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-04-25 10:19:53 (GMT) |
commit | 386bc6d38099d9e1f378d3e97654093bb9becbd9 (patch) | |
tree | e69b8b9e44ece6e8434f068e55f90aa52bfb7205 | |
parent | 7f810cd91576ad43babdbd94647ceda613024fbb (diff) | |
download | cpython-386bc6d38099d9e1f378d3e97654093bb9becbd9.zip cpython-386bc6d38099d9e1f378d3e97654093bb9becbd9.tar.gz cpython-386bc6d38099d9e1f378d3e97654093bb9becbd9.tar.bz2 |
Merged revisions 80150,80460-80461 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80150 | r.david.murray | 2010-04-17 17:45:38 +0200 (Sa, 17 Apr 2010) | 2 lines
Update link to Apple Publication Style guide.
........
r80460 | georg.brandl | 2010-04-25 12:16:00 +0200 (So, 25 Apr 2010) | 1 line
#8528: fix typo.
........
r80461 | georg.brandl | 2010-04-25 12:17:27 +0200 (So, 25 Apr 2010) | 1 line
#8522: use with statement instead of try-finally for file handling.
........
-rw-r--r-- | Doc/documenting/style.rst | 2 | ||||
-rw-r--r-- | Doc/howto/doanddont.rst | 5 | ||||
-rw-r--r-- | Doc/library/argparse.rst | 2 |
3 files changed, 3 insertions, 6 deletions
diff --git a/Doc/documenting/style.rst b/Doc/documenting/style.rst index 593f6da..6145559 100644 --- a/Doc/documenting/style.rst +++ b/Doc/documenting/style.rst @@ -66,5 +66,5 @@ Unix 1970s. -.. _Apple Publications Style Guide: http://developer.apple.com/documentation/UserExperience/Conceptual/APStyleGuide/APSG_2008.pdf +.. _Apple Publications Style Guide: http://developer.apple.com/mac/library/documentation/UserExperience/Conceptual/APStyleGuide/APSG_2009.pdf diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst index a9302ed..071eb2a 100644 --- a/Doc/howto/doanddont.rst +++ b/Doc/howto/doanddont.rst @@ -199,11 +199,8 @@ file would not be closed when an exception is raised until the handler finishes, and perhaps not at all in non-C implementations (e.g., Jython). :: def get_status(file): - fp = open(file) - try: + with open(file) as fp: return fp.readline() - finally: - fp.close() Using the Batteries diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 0515688..89ab63a 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1700,7 +1700,7 @@ Upgrading optparse code Originally, the argparse module had attempted to maintain compatibility with optparse. However, optparse was difficult to extend transparently, particularly with the changes required to support the new ``nargs=`` specifiers and better -usage messges. When most everything in optparse had either been copy-pasted +usage messages. When most everything in optparse had either been copy-pasted over or monkey-patched, it no longer seemed practical to try to maintain the backwards compatibility. |