[pypy-commit] pypy pycon2013-doc-fixes: Documentation fixes after going through said doc: mention that Pygame and Graphviz should be the CPython ones; recommend cffi over ctypes or Cython; mention RPy

2013-03-18 Thread chrish42
Author: Christian Hudon Branch: pycon2013-doc-fixes Changeset: r62423:77f67a0dcbc6 Date: 2013-03-18 15:37 -0700 http://bitbucket.org/pypy/pypy/changeset/77f67a0dcbc6/ Log:Documentation fixes after going through said doc: mention that Pygame and Graphviz should be the CPython ones; rec

[pypy-commit] pypy pycon2013-doc-fixes: Update whatsnew file for pycon2013-doc-fixes branch.

2013-03-18 Thread chrish42
Author: Christian Hudon Branch: pycon2013-doc-fixes Changeset: r62424:36324253c8c5 Date: 2013-03-18 16:52 -0700 http://bitbucket.org/pypy/pypy/changeset/36324253c8c5/ Log:Update whatsnew file for pycon2013-doc-fixes branch. diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst

[pypy-commit] pypy default: Fix gethostbyaddr() test on some versions of MacOSX.

2013-03-21 Thread chrish42
Author: Christian Hudon Branch: Changeset: r62614:efd767a61b59 Date: 2013-03-19 14:11 -0700 http://bitbucket.org/pypy/pypy/changeset/efd767a61b59/ Log:Fix gethostbyaddr() test on some versions of MacOSX. diff --git a/pypy/module/_socket/test/test_sock_app.py b/pypy/module/_socket/test/test

[pypy-commit] pypy stdlib-2.7.4: Remove unnecessary long method on W_root.

2013-08-13 Thread chrish42
Author: Christian Hudon Branch: stdlib-2.7.4 Changeset: r66139:e9f522eea11f Date: 2013-08-13 17:19 -0400 http://bitbucket.org/pypy/pypy/changeset/e9f522eea11f/ Log:Remove unnecessary long method on W_root. diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a

[pypy-commit] pypy stdlib-2.7.4: In string formatting, if conversion to a number with __int__() fails, we should retry with __long__(). Makes a new testcase introduced in Python 2.7.4 pass.

2013-08-13 Thread chrish42
Author: Christian Hudon Branch: stdlib-2.7.4 Changeset: r66138:028723fd3b86 Date: 2013-08-12 15:20 -0400 http://bitbucket.org/pypy/pypy/changeset/028723fd3b86/ Log:In string formatting, if conversion to a number with __int__() fails, we should retry with __long__(). Makes a new testca

[pypy-commit] pypy stdlib-2.7.5: Remove redundant test for NULL; emulate behavior of CPython 2.7 by only raising an error for control characters < 0x20.

2013-10-07 Thread chrish42
Author: Christian Hudon Branch: stdlib-2.7.5 Changeset: r67171:1307a5424887 Date: 2013-10-06 17:31 -0400 http://bitbucket.org/pypy/pypy/changeset/1307a5424887/ Log:Remove redundant test for NULL; emulate behavior of CPython 2.7 by only raising an error for control characters < 0x20.

[pypy-commit] pypy stdlib-2.7.5: Raise an error when finding a C0 control character in JSON string for pypyjson implementation. Fixes new, failing test in stdlib-2.7.5.

2013-10-07 Thread chrish42
Author: Christian Hudon Branch: stdlib-2.7.5 Changeset: r67170:4b9d6834816b Date: 2013-09-29 23:07 -0400 http://bitbucket.org/pypy/pypy/changeset/4b9d6834816b/ Log:Raise an error when finding a C0 control character in JSON string for pypyjson implementation. Fixes new, failing test in