Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 895627f

Browse files
committed
Merged revisions 59407-59422 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r59407 | armin.rigo | 2007-12-07 20:19:55 +0100 (Fri, 07 Dec 2007) | 2 lines This is probably what was meant here. ........ r59410 | guido.van.rossum | 2007-12-08 05:38:23 +0100 (Sat, 08 Dec 2007) | 2 lines Be (just a bit :) more specific about release date. ........ r59411 | alexandre.vassalotti | 2007-12-08 05:49:22 +0100 (Sat, 08 Dec 2007) | 3 lines Fix issue #1530. Return an error exit status if not all tests passes. ........ r59413 | georg.brandl | 2007-12-08 11:56:39 +0100 (Sat, 08 Dec 2007) | 2 lines Fix tpyo. ........ r59414 | georg.brandl | 2007-12-08 12:05:05 +0100 (Sat, 08 Dec 2007) | 2 lines Fix markup in whatsnew, use new directive in ACKS. ........ r59415 | georg.brandl | 2007-12-08 12:05:36 +0100 (Sat, 08 Dec 2007) | 2 lines Fix Eren's name. ........ r59416 | georg.brandl | 2007-12-08 12:23:13 +0100 (Sat, 08 Dec 2007) | 2 lines Add examples to the datetime documentation. Written for GHOP by "h4wk.cz". ........ r59417 | skip.montanaro | 2007-12-08 15:37:43 +0100 (Sat, 08 Dec 2007) | 2 lines Note that open() is the preferred way to open files (issue 1510). ........ r59418 | skip.montanaro | 2007-12-08 16:23:31 +0100 (Sat, 08 Dec 2007) | 1 line + "context manager" ........ r59419 | skip.montanaro | 2007-12-08 16:26:16 +0100 (Sat, 08 Dec 2007) | 1 line correct email address ........ r59420 | skip.montanaro | 2007-12-08 16:33:24 +0100 (Sat, 08 Dec 2007) | 3 lines When splitting, avoid making a copy of the string if the split doesn't find anything (issue 1538). ........
1 parent 576bf65 commit 895627f

18 files changed

Lines changed: 568 additions & 284 deletions

Doc/ACKS.txt

Lines changed: 200 additions & 199 deletions
Large diffs are not rendered by default.

Doc/glossary.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ Glossary
5555
advanced mathematical feature. If you're not aware of a need for them,
5656
it's almost certain you can safely ignore them.
5757

58+
context manager
59+
Objects which control the environment seen in a :keyword:`with`
60+
statement by defining :meth:`__enter__` and :meth:`__exit__` methods.
61+
See :pep:`343`.
62+
5863
decorator
5964
A function returning another function, usually applied as a function
6065
transformation using the ``@wrapper`` syntax. Common examples for

Doc/library/atexit.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
.. module:: atexit
66
:synopsis: Register and execute cleanup functions.
7-
.. moduleauthor:: Skip Montanaro <skip@mojam.com>
8-
.. sectionauthor:: Skip Montanaro <skip@mojam.com>
7+
.. moduleauthor:: Skip Montanaro <skip@pobox.com>
8+
.. sectionauthor:: Skip Montanaro <skip@pobox.com>
99

1010

1111
The :mod:`atexit` module defines functions to register and unregister cleanup

Doc/library/bsddb.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
.. module:: bsddb
66
:synopsis: Interface to Berkeley DB database library
7-
.. sectionauthor:: Skip Montanaro <skip@mojam.com>
7+
.. sectionauthor:: Skip Montanaro <skip@pobox.com>
88

99

1010
The :mod:`bsddb` module provides an interface to the Berkeley DB library. Users

0 commit comments

Comments
 (0)