[pypy-commit] [Git][pypy/pypy][branch/py3.9] fix typo
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: 93a952dc by Carl Friedrich Bolz-Tereick at 2021-11-19T10:49:49+01:00 fix typo --HG-- branch : py3.9 - - - - - 1 changed file: - lib-python/3/distutils/command/install.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/93a952dc6d92424f7ac2389cbda6d15e26bb0172 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/93a952dc6d92424f7ac2389cbda6d15e26bb0172 You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] fix
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: 13e9f143 by Carl Friedrich Bolz-Tereick at 2021-11-19T11:07:44+01:00 fix --HG-- branch : py3.9 - - - - - 1 changed file: - pypy/module/fcntl/test/test_fcntl.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/13e9f143bbc45b2a6d929bc3b0f924ffe4721647 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/13e9f143bbc45b2a6d929bc3b0f924ffe4721647 You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] test fixes, these belong to the "contains" changes in 6c576fc69d3f
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: ad298451 by Carl Friedrich Bolz-Tereick at 2021-11-19T11:20:42+01:00 test fixes, these belong to the "contains" changes in 6c576fc69d3f --HG-- branch : py3.9 - - - - - 2 changed files: - pypy/objspace/std/test/apptest_iterobject.py - pypy/objspace/std/test/test_listobject.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/ad29845165387666e867525047b40169124ca84e -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/ad29845165387666e867525047b40169124ca84e You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] move the repeated keyword checking from the parser to the code generator. it's
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: 62443f40 by Carl Friedrich Bolz-Tereick at 2021-11-19T14:47:19+01:00 move the repeated keyword checking from the parser to the code generator. it's not safe in the parser due to backtracking. --HG-- branch : py3.9 - - - - - 6 changed files: - pypy/interpreter/astcompiler/codegen.py - pypy/interpreter/astcompiler/test/test_astbuilder.py - pypy/interpreter/astcompiler/test/test_compiler.py - pypy/interpreter/pyparser/baserpypeg.py - pypy/interpreter/pyparser/rpypegparse.py - pypy/interpreter/pyparser/tools/python-in-rpython.gram View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/62443f40fd41d85b41b530530ba0c94f5892d4fe -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/62443f40fd41d85b41b530530ba0c94f5892d4fe You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] implement math.gcd with many args
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: b4114484 by Carl Friedrich Bolz-Tereick at 2021-11-19T15:22:52+01:00 implement math.gcd with many args --HG-- branch : py3.9 - - - - - 2 changed files: - pypy/module/math/interp_math.py - pypy/module/math/test/test_math.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/b411448416b319b49747bfd99af98ab06b0ced4c -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/b411448416b319b49747bfd99af98ab06b0ced4c You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] implement math.lcm
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: c2530d9b by Carl Friedrich Bolz-Tereick at 2021-11-19T15:39:36+01:00 implement math.lcm --HG-- branch : py3.9 - - - - - 3 changed files: - pypy/module/math/app_math.py - pypy/module/math/moduledef.py - pypy/module/math/test/test_math.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/c2530d9bc3b4a9da5f0686134e0917975db0f983 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/c2530d9bc3b4a9da5f0686134e0917975db0f983 You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] implement OrderedDict.__or__
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: d20ec362 by Carl Friedrich Bolz-Tereick at 2021-11-19T15:55:33+01:00 implement OrderedDict.__or__ --HG-- branch : py3.9 - - - - - 2 changed files: - pypy/module/_collections/app_odict.py - pypy/module/_collections/test/test_ordereddict.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/d20ec362241750e3573fad2e59d3abfc35669ee6 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/d20ec362241750e3573fad2e59d3abfc35669ee6 You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.8] PyLong_AsLong tries __index__ first, issue 3585
Matti Picus pushed to branch branch/py3.8 at PyPy / pypy Commits: 2b785a66 by Matti Picus at 2021-11-19T17:22:14+02:00 PyLong_AsLong tries __index__ first, issue 3585 --HG-- branch : py3.8 - - - - - 2 changed files: - pypy/module/cpyext/longobject.py - pypy/module/cpyext/test/test_longobject.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/2b785a6654c123c6cadc5a044a9dedc7d4cb89a2 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/2b785a6654c123c6cadc5a044a9dedc7d4cb89a2 You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.7-finally-bug] move the unsafe test into a forked process
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.7-finally-bug at PyPy / pypy Commits: b1023baa by Carl Friedrich Bolz-Tereick at 2021-11-19T19:18:56+01:00 move the unsafe test into a forked process --HG-- branch : py3.7-finally-bug - - - - - 1 changed file: - pypy/module/marshal/test/test_marshal.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/b1023baaa6763d4e86040b604e1e627f1d817238 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/b1023baaa6763d4e86040b604e1e627f1d817238 You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] countOf change bpo-44558
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: cf00a57a by Carl Friedrich Bolz-Tereick at 2021-11-19T19:46:28+01:00 countOf change bpo-44558 --HG-- branch : py3.9 - - - - - 2 changed files: - pypy/module/operator/app_operator.py - pypy/module/operator/test/test_operator.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/cf00a57abb9fdcf1a07c8d481eef0a2d2d2b4978 -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/commit/cf00a57abb9fdcf1a07c8d481eef0a2d2d2b4978 You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit
[pypy-commit] [Git][pypy/pypy][branch/py3.9] 3 commits: deprecate function
Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy Commits: 65def4f9 by Carl Friedrich Bolz-Tereick at 2021-11-19T20:17:36+01:00 deprecate function --HG-- branch : py3.9 - - - - - cba70d75 by Carl Friedrich Bolz-Tereick at 2021-11-19T20:30:43+01:00 deprecate bool(NotImplemented) --HG-- branch : py3.9 - - - - - 7e3126ad by Carl Friedrich Bolz-Tereick at 2021-11-19T20:37:49+01:00 ouch, fix removesuffix --HG-- branch : py3.9 - - - - - 9 changed files: - pypy/interpreter/special.py - pypy/interpreter/test/test_special.py - pypy/interpreter/typedef.py - pypy/module/binascii/interp_hqx.py - pypy/module/binascii/test/test_binascii.py - pypy/objspace/std/stringmethods.py - pypy/objspace/std/test/test_bytesobject.py - pypy/objspace/std/test/test_unicodeobject.py - pypy/objspace/std/unicodeobject.py View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/cf00a57abb9fdcf1a07c8d481eef0a2d2d2b4978...7e3126add6075e6d344ca5f8bf8b7fbbfcdc032f -- View it on Heptapod: https://foss.heptapod.net/pypy/pypy/-/compare/cf00a57abb9fdcf1a07c8d481eef0a2d2d2b4978...7e3126add6075e6d344ca5f8bf8b7fbbfcdc032f You're receiving this email because of your account on foss.heptapod.net. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit