Differences between revisions 11 and 27 (spanning 16 versions)
Revision 11 as of 2006-08-21 18:03:10
Size: 1288
Editor: 65
Comment:
Revision 27 as of 2006-08-22 15:24:00
Size: 2019
Editor: adsl-69-107-119-172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
 * Fix various unit tests that are currently failing in the p3yk (sic) branch; in particular I need help fixing minidom, and elementtree (Alex Martelli).  * Fix various unit tests that are currently failing in the p3yk (sic) branch (all done).
Line 9: Line 9:
 * Unify int/long (see recent email in python-3000 list; Martin von Löwis???)  * Unify int/long (Martin von Löwis??? see http://mail.python.org/pipermail/python-3000/2006-August/003046.html)
Line 12: Line 12:
Anna has checked through Lib/g*.py and found no file() references that need to be changed. (only use of file in those are in docstrings or as variable names.) Anna will continue tomorrow on this task. (AMR)
Line 17: Line 18:
 * Rewrite import in Python (Brett Cannon?, Alex Martelli?)  * Rewrite import in Python (Brett Cannon?, Alex Martelli?,
   Osvaldo Santana
)
Line 19: Line 21:
 * Rip out the last remains of coerce (Almost done, test_complex and test_compare fail, need to remove nb_coerce slot)  * Rip out the last remains of coerce (Done, need to rename nb_coerce slot)

 * Put back nb_ <true division> slots (regular and augmented)
Line 23: Line 27:
 * Make it so that __hash__ can be set to None to declare an unhashable type, and to automatically do this the first time __eq__ or __cmp__ are overridden but __hash__ is not (Guido; could use help)  * Make it so that __hash__ can be set to None to declare an unhashable type, and to automatically do this the first time __eq__ or __cmp__ are overridden but __hash__ is not (done)
Line 27: Line 31:
 * Work on tool to help convert (flag keywords like with/as, removed functions/methods: apply/{}.iter*/{}.has_key/etc)  * Py3kConversionTools: Work on tool to help convert (flag keywords like with/as, removed functions/methods: apply/{}.iter*/{}.has_key/etc) (Jeremy Hylton)
Line 30: Line 34:

 * Make zip() an iterator (like itertools.izip())

 * Make map() and filter() iterators and make them stop at the end of the shortest input (like zip()) instead of at the end of the longest input (like itertools?)

 * Rip out reduce() (done -- John Reese and Jacques Frechet)

 * Make xrange() support longs; then rename it to range() (see http://www.python.org/sf/1472639 for all but the supporting-long part) (Neal)

 * Kill uses of has_key() in idlelib (John R & Jacques F).

Python 3000 Goals for the Google Sprint

Here are some possible tasks for the Py3k portion of the GoogleSprint.

To claim a task, please add your name to it.

Anna has checked through Lib/g*.py and found no file() references that need to be changed. (only use of file in those are in docstrings or as variable names.) Anna will continue tomorrow on this task. (AMR)

  • Work on the new I/O library (I have much interest in this but need help -- Guido)
  • When the I/O library is ready, start unifying str/unicode.
  • Rewrite import in Python (Brett Cannon?, Alex Martelli?,
    • Osvaldo Santana)
  • Rip out the last remains of coerce (Done, need to rename nb_coerce slot)
  • Put back nb_ <true division> slots (regular and augmented)

  • Rip out classic classes (already done; Guido)
  • Make it so that hash can be set to None to declare an unhashable type, and to automatically do this the first time eq or cmp are overridden but hash is not (done)

  • Implement PEP 3102 (keyword-only arguments) (Jiwon Seo?)

  • Py3kConversionTools: Work on tool to help convert (flag keywords like with/as, removed functions/methods: apply/{}.iter*/{}.has_key/etc) (Jeremy Hylton)

  • See PEP 3100 for more ideas

  • Make zip() an iterator (like itertools.izip())
  • Make map() and filter() iterators and make them stop at the end of the shortest input (like zip()) instead of at the end of the longest input (like itertools?)
  • Rip out reduce() (done -- John Reese and Jacques Frechet)
  • Make xrange() support longs; then rename it to range() (see http://www.python.org/sf/1472639 for all but the supporting-long part) (Neal)

  • Kill uses of has_key() in idlelib (John R & Jacques F).

GoogleSprintPy3k (last edited 2008-11-15 13:59:51 by localhost)

Unable to edit the page? See the FrontPage for instructions.