With Barry's blessing, marking PEP 274 as withdrawn.
After genexps were introduced, it was no longer needed.
This commit is contained in:
parent
df82c82ddc
commit
873af4a927
|
@ -84,7 +84,6 @@ Index by Category
|
|||
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 @@ Index by Category
|
|||
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 @@ Numerical Index
|
|||
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
|
||||
|
|
|
@ -3,7 +3,7 @@ Title: Dict Comprehensions
|
|||
Version: $Revision$
|
||||
Last-Modified: $Date$
|
||||
Author: barry@python.org (Barry A. Warsaw)
|
||||
Status: Draft
|
||||
Status: Withdrawn
|
||||
Type: Standards Track
|
||||
Created: 25-Oct-2001
|
||||
Python-Version: 2.3
|
||||
|
@ -19,6 +19,11 @@ Abstract
|
|||
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue