diff --git a/pep-0200.txt b/pep-0200.txt index 1db3cc66b..46dd3e467 100644 --- a/pep-0200.txt +++ b/pep-0200.txt @@ -201,7 +201,7 @@ Open: proposed but not accepted or declined * "import as" - Thomas Wouters Extend the 'import' and 'from ... import' mechanism to enable - importing a symbol as another name. + importing a symbol as another name. (Without adding a new keyword.) * Extended slicing on lists - Michael Hudson Make lists (and other builtin types) handle extended slices. @@ -211,6 +211,10 @@ Open: proposed but not accepted or declined for normal slices as well as for extended ones. First step: use getitem if there is no getslice. + * 'indexing-for' - Thomas Wouters + Special syntax to give Python code access to the loop-counter in 'for' + loops. (Without adding a new keyword.) + Declined