[pypy-issue] Issue #3094: sys.setrecursionlimit(int(10e8)) results in MemoryError since 7.2 release. (pypy/pypy)

2019-10-16 Thread Chris Withers
New issue 3094: sys.setrecursionlimit(int(10e8)) results in MemoryError since 7.2 release. https://bitbucket.org/pypy/pypy/issues/3094/syssetrecursionlimit-int-10e8-results-in Chris Withers: The tests for the mock backport have started failing on pypy since this release, for both 2.7 and 3.6:

[pypy-issue] Issue #3095: PyUnicode_AsUCS4Copy fails with extended Unicode characters on Windows (pypy/pypy)

2019-10-16 Thread Ondrej B
New issue 3095: PyUnicode_AsUCS4Copy fails with extended Unicode characters on Windows https://bitbucket.org/pypy/pypy/issues/3095/pyunicode_asucs4copy-fails-with-extended Ondrej B: The following test case works on CPython 3.7 but fails on PyPy3.6-7.2.0 when running on Windows: `ucs4_test.c`:

[pypy-issue] Issue #3096: PyErr_SetExcInfo(NULL, NULL, NULL) does not fully clear current thread exception context (pypy/pypy)

2019-10-16 Thread Kirill Smelkov
New issue 3096: PyErr_SetExcInfo(NULL, NULL, NULL) does not fully clear current thread exception context https://bitbucket.org/pypy/pypy/issues/3096/pyerr_setexcinfo-null-null-null-does-not Kirill Smelkov: Hello up there. Please consider the following example: \(mysys.pyx\) ```python # cython:

[pypy-issue] Issue #3097: SyntaxWarnings "invalid escape sequences" on OSX with PyPy3.6-7.2.0 (pypy/pypy)

2019-10-16 Thread Michael Seifert
New issue 3097: SyntaxWarnings "invalid escape sequences" on OSX with PyPy3.6-7.2.0 https://bitbucket.org/pypy/pypy/issues/3097/syntaxwarnings-invalid-escape-sequences-on Michael Seifert: I get some SyntaxWarnings when running doctests with PyPy3.6-7.2.0. The warnings look like this: ``` pypy3

[pypy-issue] Issue #3098: PyPy3.6 7.2.0 error when calling PyDict_GetItem when second argument is an unhashable type (C extension) (pypy/pypy)

2019-10-16 Thread Michael Seifert
New issue 3098: PyPy3.6 7.2.0 error when calling PyDict_GetItem when second argument is an unhashable type (C extension) https://bitbucket.org/pypy/pypy/issues/3098/pypy36-720-error-when-calling Michael Seifert: Example \(extremely minified\): ```c PyObject * SomeFunc(PyObject *m, PyObject *arg