]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add Oren Tirosh and news about his patch.
authorGuido van Rossum <guido@python.org>
Fri, 14 Jun 2002 21:31:18 +0000 (21:31 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 14 Jun 2002 21:31:18 +0000 (21:31 +0000)
Misc/ACKS
Misc/NEWS

index 4f6558389fead92922b63564340c8afa30129512..c7da1b0354f28c082365682dadcb5116736b07f3 100644 (file)
--- 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
index 758a347023b24fdb1f64cad9e9c9a0101f35fc8a..ff1e44d4cf6de223dc222af9709943fc9147cc34 100644 (file)
--- 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.