summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-06-14 21:31:18 (GMT)
committerGuido van Rossum <guido@python.org>2002-06-14 21:31:18 (GMT)
commit9562bcf3bc0b3c1f9b47e3e857277b554b9f9a03 (patch)
tree083e0230ed99e5806d6789bfac8a90a501b551fc /Misc
parentbea18ccde6bc12e061c21bb6b944379d8b123845 (diff)
downloadcpython-9562bcf3bc0b3c1f9b47e3e857277b554b9f9a03.zip
cpython-9562bcf3bc0b3c1f9b47e3e857277b554b9f9a03.tar.gz
cpython-9562bcf3bc0b3c1f9b47e3e857277b554b9f9a03.tar.bz2
Add Oren Tirosh and news about his patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS10
2 files changed, 11 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 4f65583..c7da1b0 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -460,6 +460,7 @@ Tobias Thelen
Robin Thomas
Eric Tiedemann
Tracy Tims
+Oren Tirosh
Jason Tishler
Christian Tismer
Frank J. Tobin
diff --git a/Misc/NEWS b/Misc/NEWS
index 758a347..ff1e44d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -6,6 +6,12 @@ Type/class unification and new-style classes
Core and builtins
+- The built-ins slice() and buffer() are now callable types. The
+ types classobj (formerly class), code, function, instance, and
+ instancemethod (formerly instance-method), which have no built-in
+ names but are accessible through the types module, are now also
+ callable. The type dict-proxy is renamed to dictproxy.
+
- Fixed string.startswith and string.endswith builtin methods
so they accept negative indices. [SF bug 493951]
@@ -113,6 +119,10 @@ Core and builtins
Extension modules
+- The 'new' module is no longer an extension, but a Python module that
+ only exists for backwards compatibility. Its contents are no longer
+ functions but callable type objects.
+
- The bsddb.*open functions can now take 'None' as a filename.
This will create a temporary in-memory bsddb that won't be
written to disk.