Add some TODOs for 2.6. Some of these were implemented in 3k, others are likely to be done soon.

This commit is contained in:
Neal Norwitz 2006-08-25 01:29:43 +00:00
parent f0b55ea926
commit f75351eccc
1 changed files with 20 additions and 0 deletions

View File

@ -86,6 +86,26 @@ Possible features for 2.6
http://python.org/sf/1505257
(Owner: MAL)
- warnings module implemented in C
- Add warnings for Py3k features removed:
* backticks and <>
* __getslice__/__setslice__/__delslice__
* float args to PyArgs_ParseTuple
* float args to xrange
* coerce and all its friends
* __cmp__?
* other comparison changes?
* int division?
* {}.has_key()
* All PendingDeprecationWarnings (e.g. exceptions)
* using zip() result as a list
* input()
* apply()
* xreadlines
- with/as will be keywords
- Check the various bits of code in Demo/ and Tools/ all still work,
update or remove the ones that don't.