summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2006-04-24 03:04:43 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2006-04-24 03:04:43 (GMT)
commitc195d8a99510a27a706f71763b7f907bcc34d2c3 (patch)
tree04d0cdee99e3c6086bb4a4140112304a34fe490e
parent8dc73d2dc6db62bed0fb75c71079dbdf06131cda (diff)
downloadcpython-c195d8a99510a27a706f71763b7f907bcc34d2c3.zip
cpython-c195d8a99510a27a706f71763b7f907bcc34d2c3.tar.gz
cpython-c195d8a99510a27a706f71763b7f907bcc34d2c3.tar.bz2
Note changes made to PEP 343 related documentation
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8788c58..5a89d9c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -171,6 +171,10 @@ Tools
Documentation
-------------
+- PEP 343: Added Context Types section to the library reference
+ and attempted to bring other PEP 343 related documentation into
+ line with the implementation and/or python-dev discussions.
+
- Bug #1337990: clarified that ``doctest`` does not support examples
requiring both expected output and an exception.
@@ -415,7 +419,7 @@ Core and builtins
subclasses of str always behaved. int/long/float, conversion of an instance
to the base class has been moved to the proper nb_* magic slot and out of
PyNumber_*().
- Thanks Walter Dörwald.
+ Thanks Walter D�wald.
- Descriptors defined in C with a PyGetSetDef structure, where the setter is
NULL, now raise an AttributeError when attempting to set or delete the