[pypy-commit] pypy default: (alex, fijal) Make char.{lower, upper}() return chars instead of upcasting to strings.

2012-10-04 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r57780:26fac494c60a Date: 2012-10-04 05:58 -0700 http://bitbucket.org/pypy/pypy/changeset/26fac494c60a/ Log:(alex, fijal) Make char.{lower,upper}() return chars instead of upcasting to strings. diff --git a/pypy/annotation/test/test_annrpython.

[pypy-commit] buildbot default: add a step to move generated and copied header files to the checkout used to run the app-level tests

2012-10-04 Thread bivab
Author: David Schneider Branch: Changeset: r703:a0e1acb66eda Date: 2012-10-04 12:46 -0300 http://bitbucket.org/pypy/buildbot/changeset/a0e1acb66eda/ Log:add a step to move generated and copied header files to the checkout used to run the app-level tests diff --git a/bot2/pypybuildbo

[pypy-commit] pypy translation-cleanup: Copy and adapt PyCode._from_code() into HostCode

2012-10-04 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r57781:59858f210807 Date: 2012-10-04 01:10 +0100 http://bitbucket.org/pypy/pypy/changeset/59858f210807/ Log:Copy and adapt PyCode._from_code() into HostCode diff --git a/pypy/objspace/flow/bytecode.py b/pypy/objspace/flow/bytecode.py

[pypy-commit] pypy translation-cleanup: Don't wrap objects inside HostCode

2012-10-04 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r57782:1e60a9eae76b Date: 2012-10-04 19:10 +0100 http://bitbucket.org/pypy/pypy/changeset/1e60a9eae76b/ Log:Don't wrap objects inside HostCode HostCode attributes could only contain Constants, not Variables, so that wr

[pypy-commit] pypy default: workaround for issue #1259, use a module that has a correct __file__ attribute to compute the path to the math_testcases.txt file

2012-10-04 Thread bivab
Author: David Schneider Branch: Changeset: r57783:17ffe013d44c Date: 2012-10-04 15:32 -0300 http://bitbucket.org/pypy/pypy/changeset/17ffe013d44c/ Log:workaround for issue #1259, use a module that has a correct __file__ attribute to compute the path to the math_testcases.txt file di

[pypy-commit] pypy default: Issue1277: fix signature of PyCode_GetNumFree().

2012-10-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r57784:bdee7a1c7e4c Date: 2012-10-04 19:06 +0200 http://bitbucket.org/pypy/pypy/changeset/bdee7a1c7e4c/ Log:Issue1277: fix signature of PyCode_GetNumFree(). diff --git a/pypy/module/cpyext/funcobject.py b/pypy/module/cpyext/funcobject.py --- a

[pypy-commit] pypy translation-cleanup: Don't derive HostCode from PyCode.

2012-10-04 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r57785:375bfab2defa Date: 2012-10-04 20:03 +0100 http://bitbucket.org/pypy/pypy/changeset/375bfab2defa/ Log:Don't derive HostCode from PyCode. * Make HostCode.signature an ordinary attribute instead of a method. * Add

[pypy-commit] pypy py3k: The default implementation of __ne__ should now call not(x==y).

2012-10-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r57786:31bd302f43ac Date: 2012-10-04 22:06 +0200 http://bitbucket.org/pypy/pypy/changeset/31bd302f43ac/ Log:The default implementation of __ne__ should now call not(x==y). This explains why running CPython test suite always display

[pypy-commit] pypy py3k: Fix implementation details in test_list.

2012-10-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r57787:bd24b426f108 Date: 2012-10-04 22:08 +0200 http://bitbucket.org/pypy/pypy/changeset/bd24b426f108/ Log:Fix implementation details in test_list. diff --git a/lib-python/3.2/test/list_tests.py b/lib-python/3.2/test/list_tests.py --- a/

[pypy-commit] pypy py3k: Fix tuple.__repr__ containing non-ascii strings.

2012-10-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r57788:290b886bc923 Date: 2012-10-04 22:37 +0200 http://bitbucket.org/pypy/pypy/changeset/290b886bc923/ Log:Fix tuple.__repr__ containing non-ascii strings. diff --git a/pypy/objspace/std/test/test_tupleobject.py b/pypy/objspace/std/test/

[pypy-commit] pypy py3k: Somehow SSLContext.options was defined but not exported for applevel.

2012-10-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r57790:5804e3969810 Date: 2012-10-04 23:00 +0200 http://bitbucket.org/pypy/pypy/changeset/5804e3969810/ Log:Somehow SSLContext.options was defined but not exported for applevel. diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/mo

[pypy-commit] pypy py3k: Fix error message for int('invalid').

2012-10-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r57789:8879a47cad40 Date: 2012-10-04 22:57 +0200 http://bitbucket.org/pypy/pypy/changeset/8879a47cad40/ Log:Fix error message for int('invalid'). Yes, CPython has a test for it. diff --git a/pypy/objspace/std/strutil.py b/pypy/objs

[pypy-commit] pypy translation-cleanup: Remove now unused attribute HostCode.space

2012-10-04 Thread rlamy
Author: Ronan Lamy Branch: translation-cleanup Changeset: r57791:baf75ba3392b Date: 2012-10-05 00:20 +0100 http://bitbucket.org/pypy/pypy/changeset/baf75ba3392b/ Log:Remove now unused attribute HostCode.space diff --git a/pypy/objspace/flow/bytecode.py b/pypy/objspace/flow/bytecode.py --- a/