[Python-3000-checkins] r51645 - python/branches/p3yk/Misc/NEWS

neal.norwitz python-3000-checkins at python.org
Tue Aug 29 09:57:23 CEST 2006


Author: neal.norwitz
Date: Tue Aug 29 09:57:22 2006
New Revision: 51645

Modified:
   python/branches/p3yk/Misc/NEWS
Log:
Get rid of more coerce cruft, update NEWS

Modified: python/branches/p3yk/Misc/NEWS
==============================================================================
--- python/branches/p3yk/Misc/NEWS	(original)
+++ python/branches/p3yk/Misc/NEWS	Tue Aug 29 09:57:22 2006
@@ -32,11 +32,10 @@
 
 - Get rid of various compatibility-related flags (e.g. division flags).
 
+
 Core and Builtins
 -----------------
 
-- __coerce__ has been removed.
-
 - Classic classes are a thing of the past.  All classes are new style.
 
 - Exceptions *must* derive from BaseException.
@@ -55,19 +54,23 @@
 
 - Absolute import is the default behavior for 'import foo' etc.
 
+- Removed support for syntax:
+  backticks (`x`), <>
+
 - Removed these Python builtins:
   apply(), coerce(), input(), raw_input()
 
+- Removed these Python methods:
+  {}.has_key
+
 - Removed these Python slots:
   __coerce__, __div__, __idiv__, __rdiv__
 
 - Removed these attributes from Python modules:
   * operator module: div, idiv, __div__, __idiv__
 
-*** PyNumber_CoerceEx() and nb_coerce still need to be removed.
-
 - Removed these C APIs:
-  PyNumber_Coerce(), 
+  PyNumber_Coerce(), PyNumber_CoerceEx() 
 
 - Removed these C slots/fields:
   nb_divide, nb_inplace_divide
@@ -80,7 +83,13 @@
   getreadbufferproc, getwritebufferproc, getsegcountproc, getcharbufferproc
 
 - Removed these opcodes:
-  BINARY_DIVIDE, INPLACE_DIVIDE
+  BINARY_DIVIDE, INPLACE_DIVIDE, UNARY_CONVERT
+
+- zip returns an iterator
+
+- Additions:
+  set literals
+
 
 Extension Modules
 -----------------


More information about the Python-3000-checkins mailing list