]> granicus.if.org Git - python/log
python
18 years agoBug #1458017: make distutils.Log._log more forgiving when passing in
Georg Brandl [Sat, 1 Apr 2006 07:46:54 +0000 (07:46 +0000)]
Bug #1458017: make distutils.Log._log more forgiving when passing in
msg strings with '%', but without format args.

18 years agoPatch #1462496: typo in libsignal.tex
Georg Brandl [Sat, 1 Apr 2006 07:42:41 +0000 (07:42 +0000)]
Patch #1462496: typo in libsignal.tex

18 years agoPatch #1459631: documnent zlib.Decompress.flush() length parameter.
Georg Brandl [Sat, 1 Apr 2006 07:39:41 +0000 (07:39 +0000)]
Patch #1459631: documnent zlib.Decompress.flush() length parameter.

18 years agoBug #1460564: document that socket.fromfd() duplicates the given
Georg Brandl [Sat, 1 Apr 2006 07:33:08 +0000 (07:33 +0000)]
Bug #1460564: document that socket.fromfd() duplicates the given
file descriptor.

18 years agobug #1462278: small fix in documentation of __op__ vs __rop__ methods
Georg Brandl [Sat, 1 Apr 2006 07:23:08 +0000 (07:23 +0000)]
bug #1462278: small fix in documentation of __op__ vs __rop__ methods

18 years agoadd support for the sips: scheme (identical to sip: except for scheme name)
Fred Drake [Sat, 1 Apr 2006 06:11:07 +0000 (06:11 +0000)]
add support for the sips: scheme (identical to sip: except for scheme name)

18 years agoFix stupid typo.
Tim Peters [Sat, 1 Apr 2006 01:32:13 +0000 (01:32 +0000)]
Fix stupid typo.

18 years agotest_timeout(): Disable this new test on all platforms.
Tim Peters [Sat, 1 Apr 2006 01:28:51 +0000 (01:28 +0000)]
test_timeout():  Disable this new test on all platforms.

The

    s.connect(("gmail.org", 995))

line has been timing out on all buildbot slaves for hours
now, causing the test to fail.

18 years agoAdd a clause to the PY_FORMAT_SIZE_T to stop warnings on 32 bit intel
Anthony Baxter [Sat, 1 Apr 2006 01:08:29 +0000 (01:08 +0000)]
Add a clause to the PY_FORMAT_SIZE_T to stop warnings on 32 bit intel
linux with gcc 4.0.2, after talking to Tim.
  <ymmit> But it won't break anything anywhere, so don't worry :-)

18 years agomerged the sqlite-integration branch.
Anthony Baxter [Sat, 1 Apr 2006 00:57:31 +0000 (00:57 +0000)]
merged the sqlite-integration branch.
This is based on pysqlite2.1.3, and provides a DB-API interface in
the standard library. You'll need sqlite 3.2.2 or later to build
this - if you have an earlier version, the C extension module will
not be built.

18 years agoAnother crack at bug #1460340: make random.sample(dict)
Tim Peters [Sat, 1 Apr 2006 00:26:53 +0000 (00:26 +0000)]
Another crack at bug #1460340:  make random.sample(dict)
work, this time by ugly brute force.

18 years agoIn the fdopen(fd, 'a') case on UNIX, don't try to set fd's flags to -1 if
Thomas Wouters [Fri, 31 Mar 2006 22:38:19 +0000 (22:38 +0000)]
In the fdopen(fd, 'a') case on UNIX, don't try to set fd's flags to -1 if
fcntl() and fdopen() both fail. Will backport.

18 years agoMake test_socket_ssl finally pass on WIn
Georg Brandl [Fri, 31 Mar 2006 21:12:32 +0000 (21:12 +0000)]
Make test_socket_ssl finally pass on WIn

18 years agoBug #1177964: make file iterator raise MemoryError on too big files
Georg Brandl [Fri, 31 Mar 2006 20:31:02 +0000 (20:31 +0000)]
Bug #1177964: make file iterator raise MemoryError on too big files

18 years agoAdd guards against fcntl() not being available on Windows.
Georg Brandl [Fri, 31 Mar 2006 20:27:22 +0000 (20:27 +0000)]
Add guards against fcntl() not being available on Windows.

18 years agoUpdate version number to 2.5
Georg Brandl [Fri, 31 Mar 2006 20:02:40 +0000 (20:02 +0000)]
Update version number to 2.5

18 years agobug #1461855: make os.fdopen() add the O_APPEND flag if using "a" mode.
Georg Brandl [Fri, 31 Mar 2006 20:00:11 +0000 (20:00 +0000)]
bug #1461855: make os.fdopen() add the O_APPEND flag if using "a" mode.
glibc, for example, does this already on its own, but it seems that
the solaris libc doesn't. This leads to Python code being able to over-
write file contents even though having specified "a" mode.

18 years agobug #1257988: don't bail out on gethostbyname(gethostname()) failure
Georg Brandl [Fri, 31 Mar 2006 19:34:13 +0000 (19:34 +0000)]
bug #1257988: don't bail out on gethostbyname(gethostname()) failure

18 years agobug #1444104: add note about fdopen() to os.open().
Georg Brandl [Fri, 31 Mar 2006 19:20:13 +0000 (19:20 +0000)]
bug #1444104: add note about fdopen() to os.open().

18 years agoDisable test_socket_ssl timeout test on Windows.
Georg Brandl [Fri, 31 Mar 2006 19:09:56 +0000 (19:09 +0000)]
Disable test_socket_ssl timeout test on Windows.

18 years agoPatch #1460496: round() now accepts keyword arguments.
Georg Brandl [Fri, 31 Mar 2006 18:54:53 +0000 (18:54 +0000)]
Patch #1460496: round() now accepts keyword arguments.

18 years agoBug #1445068: getpass.getpass() can now be given an explicit stream
Georg Brandl [Fri, 31 Mar 2006 18:42:16 +0000 (18:42 +0000)]
Bug #1445068: getpass.getpass() can now be given an explicit stream
argument to specify where to write the prompt.

18 years agoPatch #1462313, bug #1443328: the pickle modules now can handle classes
Georg Brandl [Fri, 31 Mar 2006 18:25:44 +0000 (18:25 +0000)]
Patch #1462313, bug #1443328: the pickle modules now can handle classes
that have __private names in their __slots__.

18 years agoPatch #1380952: fix SSL objects timing out on consecutive read()s
Georg Brandl [Fri, 31 Mar 2006 18:01:16 +0000 (18:01 +0000)]
Patch #1380952: fix SSL objects timing out on consecutive read()s

18 years agoBug #1250170, Patch #1462230: handle socket.gethostname()
Georg Brandl [Fri, 31 Mar 2006 17:18:06 +0000 (17:18 +0000)]
Bug #1250170, Patch #1462230: handle socket.gethostname()
failures gracefully

18 years agoExpand comments.
Jeremy Hylton [Fri, 31 Mar 2006 16:41:22 +0000 (16:41 +0000)]
Expand comments.

Explicitly clear all elements from arena->a_objects and remove
assert() that refcount is 1.  It's possible for a program to get a
reference to the list via sys.getobjects() or via gc functions.

18 years agoAdd 2.5 libraries.
Martin v. Löwis [Fri, 31 Mar 2006 16:19:18 +0000 (16:19 +0000)]
Add 2.5 libraries.

18 years agotypos
Georg Brandl [Fri, 31 Mar 2006 16:12:34 +0000 (16:12 +0000)]
typos

18 years agotraceback now shows error position for all SyntaxError subclasses,
Georg Brandl [Fri, 31 Mar 2006 15:59:13 +0000 (15:59 +0000)]
traceback now shows error position for all SyntaxError subclasses,
e.g. IndentationError. (bug #1447885)

18 years agoComplete markup.
Georg Brandl [Fri, 31 Mar 2006 15:38:44 +0000 (15:38 +0000)]
Complete markup.

18 years agoFix the reference leak in test_generators, by explicitly breaking the cycle
Thomas Wouters [Fri, 31 Mar 2006 15:31:43 +0000 (15:31 +0000)]
Fix the reference leak in test_generators, by explicitly breaking the cycle
we are about to leave behind. An example of the cause of this leak can be
found in the leakers directory, in case we ever want to tackle the
underlying problem.

18 years agoBug #947906: An object oriented interface has been added to the calendar
Walter Dörwald [Fri, 31 Mar 2006 15:26:22 +0000 (15:26 +0000)]
Bug #947906: An object oriented interface has been added to the calendar
module. It's possible to generate HTML calendar now and the module can be
called as a script (e.g. via ``python -mcalendar``).

18 years agoTagging for release r25a0
Martin v. Löwis [Fri, 31 Mar 2006 15:21:36 +0000 (15:21 +0000)]
Tagging for release r25a0

18 years agoRemove tag, to recreate it right away. v2.5a0
Martin v. Löwis [Fri, 31 Mar 2006 15:20:56 +0000 (15:20 +0000)]
Remove tag, to recreate it right away.

18 years agoAdd index entries for new-style/old-style class.
Georg Brandl [Fri, 31 Mar 2006 15:12:16 +0000 (15:12 +0000)]
Add index entries for new-style/old-style class.

18 years agoobject() is a function, not a base class.
Georg Brandl [Fri, 31 Mar 2006 15:07:25 +0000 (15:07 +0000)]
object() is a function, not a base class.

18 years agoBug #1461610: xmlrpclib has no function "binary".
Georg Brandl [Fri, 31 Mar 2006 14:35:10 +0000 (14:35 +0000)]
Bug #1461610: xmlrpclib has no function "binary".

18 years agoFix typos.
Walter Dörwald [Fri, 31 Mar 2006 11:03:57 +0000 (11:03 +0000)]
Fix typos.

18 years agoDon't add multiple empty lines at the end of the codec. With this a
Walter Dörwald [Fri, 31 Mar 2006 10:13:10 +0000 (10:13 +0000)]
Don't add multiple empty lines at the end of the codec. With this a
regenerated codec should survive reindent.py unchanged.

18 years agoClarify what the final argument does in
Walter Dörwald [Fri, 31 Mar 2006 09:15:29 +0000 (09:15 +0000)]
Clarify what the final argument does in
IncrementalDecoder.decode().

18 years agoAdd a NEWS entry for the Alpha fixes
Neal Norwitz [Fri, 31 Mar 2006 08:21:40 +0000 (08:21 +0000)]
Add a NEWS entry for the Alpha fixes

18 years agoGet gcc to do strict IEEE math. This flag was already used for cc, just not
Neal Norwitz [Fri, 31 Mar 2006 06:54:45 +0000 (06:54 +0000)]
Get gcc to do strict IEEE math.  This flag was already used for cc, just not
gcc.  Without this flag, doing pretty much anything with NaNs causes
a Floating Point Exception signal.  This causes the interpreter to quit.
The failing tests this fixes are:  test_float, test_long, and test_struct.
This is somewhat equivalent to doing signal(SIGFPE, SIG_IGN).

Will verify if this is a problem in 2.4 and backport if necessary (probably).

18 years agoimprove reporting of illegal section nesting (provide location which
Fred Drake [Fri, 31 Mar 2006 05:30:19 +0000 (05:30 +0000)]
improve reporting of illegal section nesting (provide location which
caused detection of the error)

18 years agofix sectioning: cannot skip section levels
Fred Drake [Fri, 31 Mar 2006 05:28:38 +0000 (05:28 +0000)]
fix sectioning: cannot skip section levels

18 years agotest_main(): Restore the decimal context that was in
Tim Peters [Fri, 31 Mar 2006 04:11:16 +0000 (04:11 +0000)]
test_main():  Restore the decimal context that was in
effect at the time test_decimal was imported.  Else
running test_decimal had the bad side effect of
permanently changing the decimal context in effect.
That caused text_tokenize to fail if it ran after
test_decimal.

18 years agoRepaired a number of errors in this test:
Tim Peters [Fri, 31 Mar 2006 03:17:30 +0000 (03:17 +0000)]
Repaired a number of errors in this test:

- The doctests in decistmt() weren't run at all when
  test_tokenize was run via regrtest.py.

- Some expected output in decistmt() was Windows-specific
  (but nobody noticed because the doctests weren't getting
  run).

- test_roundtrip() didn't actually test anything when
  running the tests with -O.  Now it does.

- Changed test_roundtrip() to show the name of the input
  file when it fails.  That would have saved a lot of
  time earlier today.

- Added a bunch of comments.

18 years agoSF patch #1458476 with modifications based on discussions in python-dev. This
Barry Warsaw [Thu, 30 Mar 2006 22:45:35 +0000 (22:45 +0000)]
SF patch #1458476 with modifications based on discussions in python-dev.  This
adds the following API calls: PySet_Clear(), _PySet_Next(), and
_PySet_Update().  The latter two are considered non-public.  Tests and
documentation (for the public API) are included.

18 years agoInsert a safety space after numbers as well as names in untokenize().
Guido van Rossum [Thu, 30 Mar 2006 21:43:35 +0000 (21:43 +0000)]
Insert a safety space after numbers as well as names in untokenize().

18 years agoAdd '-Wno-deprecated-warnings' to the compile flags for the Carbon extensions
Ronald Oussoren [Thu, 30 Mar 2006 20:18:33 +0000 (20:18 +0000)]
Add '-Wno-deprecated-warnings' to the compile flags for the Carbon extensions
on OSX 10.4 or later. This stops the compiler for complaining about calls to
deprecated functions in these extensions, they are supposed to wrap as much
of Carbon as possible.

18 years agoTry to fix test_loading on openbsd.
Thomas Heller [Thu, 30 Mar 2006 19:16:15 +0000 (19:16 +0000)]
Try to fix test_loading on openbsd.

18 years agoOops - this should not have gone in.
Thomas Heller [Thu, 30 Mar 2006 18:29:25 +0000 (18:29 +0000)]
Oops - this should not have gone in.

18 years agoOutput more info when the test fails.
Thomas Heller [Thu, 30 Mar 2006 17:49:55 +0000 (17:49 +0000)]
Output more info when the test fails.

18 years agoMinor bugs in the __index__ code (PEP 357), with tests.
Armin Rigo [Thu, 30 Mar 2006 14:04:02 +0000 (14:04 +0000)]
Minor bugs in the __index__ code (PEP 357), with tests.

18 years agowhitespace normalisation
Anthony Baxter [Thu, 30 Mar 2006 12:59:11 +0000 (12:59 +0000)]
whitespace normalisation

18 years agoThat one was a mistake.
Georg Brandl [Thu, 30 Mar 2006 12:19:07 +0000 (12:19 +0000)]
That one was a mistake.

18 years agoRemove unnecessary casts from type object initializers.
Georg Brandl [Thu, 30 Mar 2006 11:58:57 +0000 (11:58 +0000)]
Remove unnecessary casts from type object initializers.

18 years agoRemove unnecessary casts in type object initializers.
Georg Brandl [Thu, 30 Mar 2006 11:57:00 +0000 (11:57 +0000)]
Remove unnecessary casts in type object initializers.

18 years agoTry to build _ctypes on x86 openbsd.
Thomas Heller [Thu, 30 Mar 2006 11:51:58 +0000 (11:51 +0000)]
Try to build _ctypes on x86 openbsd.

18 years agoChecking in the test for PEP 357.
Armin Rigo [Thu, 30 Mar 2006 11:28:43 +0000 (11:28 +0000)]
Checking in the test for PEP 357.

This is from the SF tracker as well; for some reason the
content of test_index.py was lost and an empty file was
checked in instead.

18 years agoFixed bug #1459029 - unicode reprs were double-escaped.
Anthony Baxter [Thu, 30 Mar 2006 10:54:07 +0000 (10:54 +0000)]
Fixed bug #1459029 - unicode reprs were double-escaped.

18 years agoFixed bug #1459029 - unicode reprs were double-escaped.
Anthony Baxter [Thu, 30 Mar 2006 10:53:17 +0000 (10:53 +0000)]
Fixed bug #1459029 - unicode reprs were double-escaped.
Backed out an old patch from 2000.

18 years agoMark the upload command as new in 2.5, per Neal Norwitz's request.
Phillip J. Eby [Thu, 30 Mar 2006 07:09:06 +0000 (07:09 +0000)]
Mark the upload command as new in 2.5, per Neal Norwitz's request.

18 years agofill in refcount information for APIs first documented in Python 2.5
Fred Drake [Thu, 30 Mar 2006 03:04:41 +0000 (03:04 +0000)]
fill in refcount information for APIs first documented in Python 2.5

18 years agomerge revision 43437 from the release24-maint branch:
Fred Drake [Thu, 30 Mar 2006 02:58:38 +0000 (02:58 +0000)]
merge revision 43437 from the release24-maint branch:
- update the refcount information (late, but not a bad thing to do...)
- clarify that PyGen_New() steals a reference

18 years agoOops, forgot to checkin the NEWS for --identity
Phillip J. Eby [Thu, 30 Mar 2006 02:16:40 +0000 (02:16 +0000)]
Oops, forgot to checkin the NEWS for --identity

18 years agoImplementation for patch request #1457316: support --identity option
Phillip J. Eby [Thu, 30 Mar 2006 02:12:14 +0000 (02:12 +0000)]
Implementation for patch request #1457316: support --identity option
for setup.py "upload" command.

18 years agoSF bug #1460340: random.sample can raise KeyError
Raymond Hettinger [Wed, 29 Mar 2006 09:13:13 +0000 (09:13 +0000)]
SF bug #1460340:  random.sample can raise KeyError

Fix the hit and miss style of testing for sets and dicts.

18 years agoIn format strings slinging Py_ssize_t, unconditionally
Tim Peters [Tue, 28 Mar 2006 21:44:32 +0000 (21:44 +0000)]
In format strings slinging Py_ssize_t, unconditionally
interpolate PY_FORMAT_SIZE_T instead of #if'ing on
MS_WIN64.

18 years agoadd the ctypes.test subpackage to a normal Unix installation --
Armin Rigo [Tue, 28 Mar 2006 20:30:45 +0000 (20:30 +0000)]
add the ctypes.test subpackage to a normal Unix installation --
otherwise, test/test_ctypes.py fails.  What about ctypes.macholib?

18 years agofix a comment.
Armin Rigo [Tue, 28 Mar 2006 19:27:56 +0000 (19:27 +0000)]
fix a comment.

18 years agoRevert r43399.
Georg Brandl [Tue, 28 Mar 2006 19:19:56 +0000 (19:19 +0000)]
Revert r43399.

18 years agoanswer a question from a comment
Armin Rigo [Tue, 28 Mar 2006 19:10:40 +0000 (19:10 +0000)]
answer a question from a comment

18 years agoMove product_codes in their own file.
Martin v. Löwis [Tue, 28 Mar 2006 18:30:05 +0000 (18:30 +0000)]
Move product_codes in their own file.

18 years agodocument sys.maxint in std objects
Georg Brandl [Tue, 28 Mar 2006 18:02:44 +0000 (18:02 +0000)]
document sys.maxint in std objects

18 years agoBug #1459103: add inter-section links for strftime section.
Georg Brandl [Tue, 28 Mar 2006 12:48:43 +0000 (12:48 +0000)]
Bug #1459103: add inter-section links for strftime section.

18 years agoBug #1459963: urllib2 now normalizes HTTP header names correctly
Georg Brandl [Tue, 28 Mar 2006 12:40:24 +0000 (12:40 +0000)]
Bug #1459963: urllib2 now normalizes HTTP header names correctly
with title().

18 years agoMake the tests succeed with -Qnew: Do not rely on the exact wording of a ZeroDivision...
Thomas Heller [Tue, 28 Mar 2006 11:00:08 +0000 (11:00 +0000)]
Make the tests succeed with -Qnew: Do not rely on the exact wording of a ZeroDivisionError.

18 years agoMake uu use floor division instead of classic division.
Georg Brandl [Tue, 28 Mar 2006 10:29:45 +0000 (10:29 +0000)]
Make uu use floor division instead of classic division.
This was discovered by test_email failing with -Qnew.

18 years agoMake test_augassign pass with -Qnew and convert to unittest.
Georg Brandl [Tue, 28 Mar 2006 10:26:45 +0000 (10:26 +0000)]
Make test_augassign pass with -Qnew and convert to unittest.

18 years agoMake xdrlib use floor division instead of classic division.
Georg Brandl [Tue, 28 Mar 2006 10:07:46 +0000 (10:07 +0000)]
Make xdrlib use floor division instead of classic division.
Makes test_xdrlib pass.

18 years agoMake test_coercion pass with -Qnew. Converted to unittest on the occasion.
Georg Brandl [Tue, 28 Mar 2006 10:00:53 +0000 (10:00 +0000)]
Make test_coercion pass with -Qnew. Converted to unittest on the occasion.

18 years agoIn true regression-test spirit, make sure the
Thomas Wouters [Tue, 28 Mar 2006 08:44:55 +0000 (08:44 +0000)]
In true regression-test spirit, make sure the
itertools.tee->instance->attribute->itertools.tee and
itertools.tee->teedataobject->itertools.tee cycles, which can be found now
that itertools.tee and its teedataobject participate in GC, remain findable
and cleanable. The test won't fail when they aren't, but at least the
frequent hunt-refleaks runs would spot the rise in refleaks.

18 years agoAdd an example of a generator->freevar->cell->generator reference-cycle that
Thomas Wouters [Tue, 28 Mar 2006 08:14:24 +0000 (08:14 +0000)]
Add an example of a generator->freevar->cell->generator reference-cycle that
doesn't get cleaned up and thus leaks.

18 years agoMake test_decimal work with -Qnew.
Georg Brandl [Tue, 28 Mar 2006 08:06:35 +0000 (08:06 +0000)]
Make test_decimal work with -Qnew.

18 years agoCorrect case in test for Windows 9X.
Martin v. Löwis [Tue, 28 Mar 2006 07:51:51 +0000 (07:51 +0000)]
Correct case in test for Windows 9X.

18 years agoPart of bug 1459808: fiddle test_input_and_raw_input()
Tim Peters [Tue, 28 Mar 2006 07:39:22 +0000 (07:39 +0000)]
Part of bug 1459808:  fiddle test_input_and_raw_input()
so it passes w/ -Qnew.

18 years agoPart of bug 1459808: fiddle so that this passes
Tim Peters [Tue, 28 Mar 2006 07:28:40 +0000 (07:28 +0000)]
Part of bug 1459808:  fiddle so that this passes
with or without -Qnew.

18 years agoTry to get rid of a Coverity warning by consistently using origpending.
Neal Norwitz [Tue, 28 Mar 2006 06:19:28 +0000 (06:19 +0000)]
Try to get rid of a Coverity warning by consistently using origpending.

18 years agoAdd version added info for with statement and context managers
Neal Norwitz [Tue, 28 Mar 2006 05:51:02 +0000 (05:51 +0000)]
Add version added info for with statement and context managers

18 years agoDocument objects that can be used with the ``with`` statement.
Phillip J. Eby [Tue, 28 Mar 2006 00:13:10 +0000 (00:13 +0000)]
Document objects that can be used with the ``with`` statement.

18 years agoFix some missing imports
Phillip J. Eby [Tue, 28 Mar 2006 00:08:22 +0000 (00:08 +0000)]
Fix some missing imports

18 years agoFix contextlib not copying function attributes
Phillip J. Eby [Tue, 28 Mar 2006 00:07:24 +0000 (00:07 +0000)]
Fix contextlib not copying function attributes

18 years agoDocument the contextlib module.
Phillip J. Eby [Mon, 27 Mar 2006 23:58:46 +0000 (23:58 +0000)]
Document the contextlib module.

18 years agodummy_thread needs to support PEP 343 too.
Phillip J. Eby [Mon, 27 Mar 2006 23:32:10 +0000 (23:32 +0000)]
dummy_thread needs to support PEP 343 too.

18 years agoDocument change made to number of preallocated integers.
Georg Brandl [Mon, 27 Mar 2006 22:09:16 +0000 (22:09 +0000)]
Document change made to number of preallocated integers.

18 years agoPatch #1459476: install PKG-INFO metadata alongside distutils-installed packages.
Phillip J. Eby [Mon, 27 Mar 2006 21:55:21 +0000 (21:55 +0000)]
Patch #1459476: install PKG-INFO metadata alongside distutils-installed packages.

18 years agoThe "with" statement needs a __future__. :)
Phillip J. Eby [Mon, 27 Mar 2006 21:42:30 +0000 (21:42 +0000)]
The "with" statement needs a __future__.  :)

18 years agoDocument the "with" statement.
Phillip J. Eby [Mon, 27 Mar 2006 21:06:13 +0000 (21:06 +0000)]
Document the "with" statement.

18 years agoMake itertools.tee and its internal teedataobject participate in GC. This
Thomas Wouters [Mon, 27 Mar 2006 21:02:13 +0000 (21:02 +0000)]
Make itertools.tee and its internal teedataobject participate in GC. This
alone does not solve the leak in test_generators, unfortunately, but it is
part of test_generators' problem and it does solve other cycles.

18 years agoDocument the PEP 343 context manager protocol methods.
Phillip J. Eby [Mon, 27 Mar 2006 19:59:34 +0000 (19:59 +0000)]
Document the PEP 343 context manager protocol methods.