summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2013-04-19 11:32:25 -0400
committerBarry Warsaw <barry@python.org>2013-04-19 11:32:25 -0400
commit0aa685a33c49ebb731c565348355b6c9a756b831 (patch)
tree5afcc2825c9dc2fc2650004c784ec0e82a6bbf05
parent1b6424fc4bda9df0c48dfd308b236ae3704a01b4 (diff)
downloadcpython-git-0aa685a33c49ebb731c565348355b6c9a756b831.tar.gz
Minor typo in example.
-rw-r--r--Doc/library/contextlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst
index 154e3954a6..fee5067bd0 100644
--- a/Doc/library/contextlib.rst
+++ b/Doc/library/contextlib.rst
@@ -259,7 +259,7 @@ Functions and classes provided:
with ExitStack() as stack:
files = [stack.enter_context(open(fname)) for fname in filenames]
- close_files = stack.pop_all().close
+ close_files = stack.pop_all().close()
# If opening any file fails, all previously opened files will be
# closed automatically. If all files are opened successfully,
# they will remain open even after the with statement ends.