[Python-checkins] python/nondist/peps pep-0000.txt, 1.315, 1.316 pep-0274.txt, 1.5, 1.6

rhettinger@users.sourceforge.net rhettinger at users.sourceforge.net
Fri Jun 17 04:13:13 CEST 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27569

Modified Files:
	pep-0000.txt pep-0274.txt 
Log Message:
With Barry's blessing, marking PEP 274 as withdrawn.

After genexps were introduced, it was no longer needed.



Index: pep-0000.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0000.txt,v
retrieving revision 1.315
retrieving revision 1.316
diff -u -d -r1.315 -r1.316
--- pep-0000.txt	15 Jun 2005 16:34:01 -0000	1.315
+++ pep-0000.txt	17 Jun 2005 02:13:11 -0000	1.316
@@ -84,7 +84,6 @@
  S   266  Optimizing Global Variable/Attribute Access  Montanaro
  S   267  Optimized Access to Module Namespaces        Hylton
  S   268  Extended HTTP functionality and WebDAV       Stein
- S   274  Dict Comprehensions                          Warsaw
  S   275  Switching on Multiple Values                 Lemburg
  S   276  Simple Iterator for ints                     Althoff
  S   280  Optimizing access to globals                 GvR
@@ -204,6 +203,7 @@
  SD  269  Pgen Module for Python                       Riehl
  SR  270  uniq method for list objects                 Petrone
  SR  271  Prefixing sys.path by command line option    Giacometti
+ SR  274  Dict Comprehensions                          Warsaw
  SR  288  Generators Attributes and Exceptions         Hettinger
  SR  295  Interpretation of multiline string constants Koltsov
  SR  296  Adding a bytes Object Type                   Gilbert
@@ -316,7 +316,7 @@
  SR  271  Prefixing sys.path by command line option    Giacometti
  IF  272  API for Block Encryption Algorithms v1.0     Kuchling
  SF  273  Import Modules from Zip Archives             Ahlstrom
- S   274  Dict Comprehensions                          Warsaw
+ SR  274  Dict Comprehensions                          Warsaw
  S   275  Switching on Multiple Values                 Lemburg
  S   276  Simple Iterator for ints                     Althoff
  SF  277  Unicode file name support for Windows NT     Hodgson

Index: pep-0274.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0274.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- pep-0274.txt	22 Sep 2003 04:51:50 -0000	1.5
+++ pep-0274.txt	17 Jun 2005 02:13:11 -0000	1.6
@@ -3,7 +3,7 @@
 Version: $Revision$
 Last-Modified: $Date$
 Author: barry at python.org (Barry A. Warsaw)
-Status: Draft
+Status: Withdrawn
 Type: Standards Track
 Created: 25-Oct-2001
 Python-Version: 2.3
@@ -19,6 +19,11 @@
     very similar to list comprehensions, except that they produce
     Python dictionary objects instead of list objects.
 
+Resolution
+
+    This PEP is withdrawn.  Substantially all of its benefits were
+    subsumed by generator expressions coupled with the dict() constructor.
+
 
 Proposed Solution
 



More information about the Python-checkins mailing list