[pypy-commit] pypy default: fix error messages in complex number handling a bit

2018-05-28 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r94694:cadf86879441 Date: 2018-05-28 21:33 +0200 http://bitbucket.org/pypy/pypy/changeset/cadf86879441/ Log:fix error messages in complex number handling a bit diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complex

[pypy-commit] pypy py3.6: skip test_dict_version.py, pypy does this very differently

2018-05-28 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r94695:49f42c75da0e Date: 2018-05-28 21:36 +0200 http://bitbucket.org/pypy/pypy/changeset/49f42c75da0e/ Log:skip test_dict_version.py, pypy does this very differently diff --git a/lib-python/conftest.py b/lib-python/conftest.py ---

[pypy-commit] pypy fix_test_codecs: Adding branch fix_test_codecs

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94697:4020e294a7ba Date: 2018-05-13 21:48 -0700 http://bitbucket.org/pypy/pypy/changeset/4020e294a7ba/ Log:Adding branch fix_test_codecs ___ pypy-commit mailing list [email protected]

[pypy-commit] pypy py3.6: Resolving failing deprecation tests by moving the warning code

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: py3.6 Changeset: r94696:f9930d8ca5da Date: 2018-05-13 21:41 -0700 http://bitbucket.org/pypy/pypy/changeset/f9930d8ca5da/ Log:Resolving failing deprecation tests by moving the warning code Moving the warning code for unicode errors higher up the chain,

[pypy-commit] pypy fix_test_codecs: Adding warning with escaping invalid unicode escape characters.

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94698:2fd74c4c379d Date: 2018-05-16 07:13 -0700 http://bitbucket.org/pypy/pypy/changeset/2fd74c4c379d/ Log:Adding warning with escaping invalid unicode escape characters. diff --git a/pypy/interpreter/unicodehelper.py b/pypy/interp

[pypy-commit] pypy fix_test_codecs: Ported fix for surrogate handling to copied unicodehelper

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94701:f9ba6a5a05cc Date: 2018-05-25 07:54 -0700 http://bitbucket.org/pypy/pypy/changeset/f9ba6a5a05cc/ Log:Ported fix for surrogate handling to copied unicodehelper diff --git a/pypy/interpreter/unicodehelper.py b/pypy/interpreter/

[pypy-commit] pypy fix_test_codecs: Addressing code review feedback on #612

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94703:c6a20c1af5c0 Date: 2018-05-26 21:56 -0700 http://bitbucket.org/pypy/pypy/changeset/c6a20c1af5c0/ Log:Addressing code review feedback on #612 * removing all changes to rpython, as nothing needs to change there t

[pypy-commit] pypy fix_test_codecs: Adding unit test for new behavior in runicode. Fixing bug

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94702:c2a3d03741e2 Date: 2018-05-25 23:09 -0700 http://bitbucket.org/pypy/pypy/changeset/c2a3d03741e2/ Log:Adding unit test for new behavior in runicode. Fixing bug Fixing a bug in the utf 8 handling which did not consider l

[pypy-commit] pypy py3.6: Merged in toumorokoshi/pypy/fix_test_codecs (pull request #612)

2018-05-28 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r94705:24d343241901 Date: 2018-05-29 06:07 + http://bitbucket.org/pypy/pypy/changeset/24d343241901/ Log:Merged in toumorokoshi/pypy/fix_test_codecs (pull request #612) Fix test codecs diff --git a/lib-python/3/test/tes

[pypy-commit] pypy fix_test_codecs: Copying code out of runicode into unicodehelper, further isolating the pypy code from rpython

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94700:8f5146e6c44f Date: 2018-05-24 20:01 -0700 http://bitbucket.org/pypy/pypy/changeset/8f5146e6c44f/ Log:Copying code out of runicode into unicodehelper, further isolating the pypy code from rpython diff --git a/pypy/inter

[pypy-commit] pypy fix_test_codecs: Adding low surrogates into errorhandlers for utf-8encoding

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94699:6d4fc7830371 Date: 2018-05-20 06:34 -0700 http://bitbucket.org/pypy/pypy/changeset/6d4fc7830371/ Log:Adding low surrogates into errorhandlers for utf-8encoding In CPython 3.6, Behavior was defined that included low sur

[pypy-commit] pypy fix_test_codecs: Fixing tests, and re-adding fixed for unicode encoding

2018-05-28 Thread Yusuke Tsutsumi
Author: Yusuke Tsutsumi Branch: fix_test_codecs Changeset: r94704:40a452db0df6 Date: 2018-05-26 22:29 -0700 http://bitbucket.org/pypy/pypy/changeset/40a452db0df6/ Log:Fixing tests, and re-adding fixed for unicode encoding This re-adds the fixes for the failing test_codecs tests in py

[pypy-commit] pypy py3.6: a test for the warning in unicode_escape_decode

2018-05-28 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r94706:990690db345d Date: 2018-05-29 08:15 +0200 http://bitbucket.org/pypy/pypy/changeset/990690db345d/ Log:a test for the warning in unicode_escape_decode diff --git a/pypy/module/_codecs/test/test_codecs.py b/pypy/module/_codecs