Author: Antonio Cuni <[email protected]> Branch: extradoc Changeset: r4898:be5b7511331f Date: 2012-10-31 20:40 +0100 http://bitbucket.org/pypy/extradoc/changeset/be5b7511331f/
Log: tweaks diff --git a/blog/draft/py3k-status-update-7.rst b/blog/draft/py3k-status-update-7.rst --- a/blog/draft/py3k-status-update-7.rst +++ b/blog/draft/py3k-status-update-7.rst @@ -5,23 +5,33 @@ we can work on thanks to all of the people who donated_ to the `py3k proposal`_. -There was an increased amount of activity this month. +The biggest news is that this month Philip started to work on py3k in parallel +to Antonio. As such, there was an increased amount of activity. The `py3k buildbots`_ now fully translate the branch every night and run the Python standard library tests. -We currently pass 160 out of approximately 355 test modules, fail 144 and skip -apprixmately 51. +We currently pass 160 out of approximately 355 modules of CPython's standard +test suite, fail 144 and skip apprixmately 51. -o work on dictviews (keys/values/items) +Some highlights: -o _csv +o dictviews (the objects returned by dict.keys/values/items) has been greatly + improved, and now they full support set operators -o more parser fixes, py3 list comprehension semantics +o a lot of tests has been fixed wrt complex numbers (and in particular the +``__complex__`` method) + +o _csv has been fixed and now it correctly handles unicode instead of bytes + +o more parser fixes, py3k list comprehension semantics; now you can no longer + access the list comprehension variable after it finishes o 2to3'd most of our custom lib_pypy -o py3-enabled pyrepl (readline works in the repl!), builtins.input() (pdb seems to work!) +o py3-enabled pyrepl: this means that finally readline works at the command + prompt, as well as builtins.input(). ``pdb`` seems to work, as well as + fancycompleter_ to get colorful TAB completions :-) o py3 round @@ -34,6 +44,10 @@ contributions; among other things, Amaury recently worked on <all kinds of stuff listed above> + +cheers, +Philip&Antonio + .. _donated: http://morepypy.blogspot.com/2012/01/py3k-and-numpy-first-stage-thanks-to.html .. _`py3k proposal`: http://pypy.org/py3donate.html .. _`py3k branch`: https://bitbucket.org/pypy/pypy/src/py3k _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
