Add a number of proposed but not accepted or declined projects. If you feel

these should not be in this PEP -- decline them! Also note that I put
augmented assignment under proposed, even though Guido and Tim keep saying
it will be in 2.0, because I still don't know whether the proposal itself is
accepted :-)
This commit is contained in:
Thomas Wouters 2000-08-15 07:47:12 +00:00
parent e7551e0593
commit 17de47077f
1 changed files with 15 additions and 0 deletions

View File

@ -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