With Barry's blessing, marking PEP 274 as withdrawn.

After genexps were introduced, it was no longer needed.
This commit is contained in:
Raymond Hettinger 2005-06-17 02:13:11 +00:00
parent df82c82ddc
commit 873af4a927
2 changed files with 8 additions and 3 deletions

View File

@ -84,7 +84,6 @@ Index by Category
S 266 Optimizing Global Variable/Attribute Access Montanaro S 266 Optimizing Global Variable/Attribute Access Montanaro
S 267 Optimized Access to Module Namespaces Hylton S 267 Optimized Access to Module Namespaces Hylton
S 268 Extended HTTP functionality and WebDAV Stein S 268 Extended HTTP functionality and WebDAV Stein
S 274 Dict Comprehensions Warsaw
S 275 Switching on Multiple Values Lemburg S 275 Switching on Multiple Values Lemburg
S 276 Simple Iterator for ints Althoff S 276 Simple Iterator for ints Althoff
S 280 Optimizing access to globals GvR S 280 Optimizing access to globals GvR
@ -204,6 +203,7 @@ Index by Category
SD 269 Pgen Module for Python Riehl SD 269 Pgen Module for Python Riehl
SR 270 uniq method for list objects Petrone SR 270 uniq method for list objects Petrone
SR 271 Prefixing sys.path by command line option Giacometti SR 271 Prefixing sys.path by command line option Giacometti
SR 274 Dict Comprehensions Warsaw
SR 288 Generators Attributes and Exceptions Hettinger SR 288 Generators Attributes and Exceptions Hettinger
SR 295 Interpretation of multiline string constants Koltsov SR 295 Interpretation of multiline string constants Koltsov
SR 296 Adding a bytes Object Type Gilbert SR 296 Adding a bytes Object Type Gilbert
@ -316,7 +316,7 @@ Numerical Index
SR 271 Prefixing sys.path by command line option Giacometti SR 271 Prefixing sys.path by command line option Giacometti
IF 272 API for Block Encryption Algorithms v1.0 Kuchling IF 272 API for Block Encryption Algorithms v1.0 Kuchling
SF 273 Import Modules from Zip Archives Ahlstrom 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 275 Switching on Multiple Values Lemburg
S 276 Simple Iterator for ints Althoff S 276 Simple Iterator for ints Althoff
SF 277 Unicode file name support for Windows NT Hodgson SF 277 Unicode file name support for Windows NT Hodgson

View File

@ -3,7 +3,7 @@ Title: Dict Comprehensions
Version: $Revision$ Version: $Revision$
Last-Modified: $Date$ Last-Modified: $Date$
Author: barry@python.org (Barry A. Warsaw) Author: barry@python.org (Barry A. Warsaw)
Status: Draft Status: Withdrawn
Type: Standards Track Type: Standards Track
Created: 25-Oct-2001 Created: 25-Oct-2001
Python-Version: 2.3 Python-Version: 2.3
@ -19,6 +19,11 @@ Abstract
very similar to list comprehensions, except that they produce very similar to list comprehensions, except that they produce
Python dictionary objects instead of list objects. 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 Proposed Solution