diff --git a/pep-0200.txt b/pep-0200.txt index 1c469275e..1db3cc66b 100644 --- a/pep-0200.txt +++ b/pep-0200.txt @@ -196,6 +196,21 @@ Open: proposed but not accepted or declined - http://www.python.org/pipermail/python-dev/1999-August/002252.html + * Augmented assignment - Thomas Wouters + Add += and family, plus Python and C hooks, and API functions. + + * "import as" - Thomas Wouters + Extend the 'import' and 'from ... import' mechanism to enable + importing a symbol as another name. + + * Extended slicing on lists - Michael Hudson + Make lists (and other builtin types) handle extended slices. + + * Merge __getitem__ and __getslice__ - Thomas Wouters + Move __getslice__ functionality into __getitem__, using slice objects, + for normal slices as well as for extended ones. First step: use + getitem if there is no getslice. + Declined