[pypy-commit] pypy py3.7: typo

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98448:17ba541ef13d Date: 2020-01-05 19:21 +0100 http://bitbucket.org/pypy/pypy/changeset/17ba541ef13d/ Log:typo diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/astcompiler/codegen.py --- a/pypy/interpreter

[pypy-commit] pypy py3.7: unparse annotations when __future__.annotations is imported

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98450:fa9634deaf0d Date: 2020-01-06 10:54 +0100 http://bitbucket.org/pypy/pypy/changeset/fa9634deaf0d/ Log:unparse annotations when __future__.annotations is imported diff --git a/pypy/interpreter/astcompiler/consts.py b/pypy/int

[pypy-commit] pypy py3.7: progress on unparsing

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98447:771817286c04 Date: 2020-01-05 11:04 +0100 http://bitbucket.org/pypy/pypy/changeset/771817286c04/ Log:progress on unparsing diff --git a/pypy/interpreter/astcompiler/test/test_unparse.py b/pypy/interpreter/astcompiler/test/t

[pypy-commit] pypy py3.7: some more features. implement a visitor to replace annotations with constant strings

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98449:b7258d53fa17 Date: 2020-01-05 19:22 +0100 http://bitbucket.org/pypy/pypy/changeset/b7258d53fa17/ Log:some more features. implement a visitor to replace annotations with constant strings diff --git a/pypy/interpreter/

[pypy-commit] pypy py3.7: xfail test that I don't know how to implement yet

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98451:ebbe4d608409 Date: 2020-01-06 10:56 +0100 http://bitbucket.org/pypy/pypy/changeset/ebbe4d608409/ Log:xfail test that I don't know how to implement yet diff --git a/lib-python/3/test/test_future.py b/lib-python/3/test/test_fu

[pypy-commit] pypy py3.6: Test and fix: follow CPython (at least 3.6.9) in updating the line number

2020-01-06 Thread arigo
Author: Armin Rigo Branch: py3.6 Changeset: r98452:d36692105171 Date: 2020-01-06 18:50 +0100 http://bitbucket.org/pypy/pypy/changeset/d36692105171/ Log:Test and fix: follow CPython (at least 3.6.9) in updating the line number if it decides to constantify the whole tuple of default

[pypy-commit] pypy py3.6: Fix typo in test

2020-01-06 Thread arigo
Author: Armin Rigo Branch: py3.6 Changeset: r98453:a0e3294e5d1d Date: 2020-01-06 19:10 +0100 http://bitbucket.org/pypy/pypy/changeset/a0e3294e5d1d/ Log:Fix typo in test diff --git a/pypy/interpreter/astcompiler/test/test_astbuilder.py b/pypy/interpreter/astcompiler/test/test_astbuilder.py -

[pypy-commit] pypy py3.7: fstring support

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98454:1758bd2014d8 Date: 2020-01-06 13:47 +0100 http://bitbucket.org/pypy/pypy/changeset/1758bd2014d8/ Log:fstring support diff --git a/pypy/interpreter/astcompiler/test/test_unparse.py b/pypy/interpreter/astcompiler/test/test_un

[pypy-commit] pypy py3.7: import 3.7 grammar from cpython

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98456:51dba005edf3 Date: 2020-01-06 14:12 +0100 http://bitbucket.org/pypy/pypy/changeset/51dba005edf3/ Log:import 3.7 grammar from cpython diff --git a/pypy/interpreter/pyparser/data/Grammar3.7 b/pypy/interpreter/pyparser/data/Gr

[pypy-commit] pypy py3.7: import PyPy modifications (for revdb)

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98457:3749f66b8f56 Date: 2020-01-06 14:12 +0100 http://bitbucket.org/pypy/pypy/changeset/3749f66b8f56/ Log:import PyPy modifications (for revdb) diff --git a/pypy/interpreter/pyparser/data/Grammar3.7 b/pypy/interpreter/pyparser/d

[pypy-commit] pypy py3.7: switch to the 3.7 grammar, which makes it possible to stop using the hacks in

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98458:c345fa010218 Date: 2020-01-06 19:45 +0100 http://bitbucket.org/pypy/pypy/changeset/c345fa010218/ Log:switch to the 3.7 grammar, which makes it possible to stop using the hacks in the tokenizer diff --git a/pypy/inter

[pypy-commit] pypy py3.7: await support in unparsing

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98459:d024dd626c73 Date: 2020-01-06 19:50 +0100 http://bitbucket.org/pypy/pypy/changeset/d024dd626c73/ Log:await support in unparsing diff --git a/pypy/interpreter/astcompiler/test/test_unparse.py b/pypy/interpreter/astcompiler/t

[pypy-commit] pypy py3.7: remove the f, if possible

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98455:fcec4f8b9fb2 Date: 2020-01-06 13:57 +0100 http://bitbucket.org/pypy/pypy/changeset/fcec4f8b9fb2/ Log:remove the f, if possible diff --git a/pypy/interpreter/astcompiler/test/test_unparse.py b/pypy/interpreter/astcompiler/te

[pypy-commit] pypy py3.7: hack differently to make PyCode.dump (and thus test_pycode) work

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98460:ac723fe5ecad Date: 2020-01-06 19:59 +0100 http://bitbucket.org/pypy/pypy/changeset/ac723fe5ecad/ Log:hack differently to make PyCode.dump (and thus test_pycode) work diff --git a/pypy/interpreter/pycode.py b/pypy/interpreter

[pypy-commit] pypy py3.7: maybe fix the token errors

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98463:f69a090e703c Date: 2020-01-06 20:44 +0100 http://bitbucket.org/pypy/pypy/changeset/f69a090e703c/ Log:maybe fix the token errors diff --git a/pypy/module/token/moduledef.py b/pypy/module/token/moduledef.py --- a/pypy/module/t

[pypy-commit] pypy py3.7: better error message for object.__new__

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98464:4887e271842a Date: 2020-01-06 20:49 +0100 http://bitbucket.org/pypy/pypy/changeset/4887e271842a/ Log:better error message for object.__new__ diff --git a/pypy/objspace/std/objectobject.py b/pypy/objspace/std/objectobject.py

[pypy-commit] benchmarks chameleon: use 42 as a sentinel exit code when running a python2-only benchmark on python3

2020-01-06 Thread mattip
Author: Matti Picus Branch: chameleon Changeset: r417:88b0250f4c41 Date: 2020-01-06 10:47 +0200 http://bitbucket.org/pypy/benchmarks/changeset/88b0250f4c41/ Log:use 42 as a sentinel exit code when running a python2-only benchmark on python3 If the python running the benchmark

[pypy-commit] benchmarks chameleon: update sphinx to 1.8.5

2020-01-06 Thread mattip
Author: Matti Picus Branch: chameleon Changeset: r418:ab6c3e5c29b6 Date: 2020-01-06 14:05 +0200 http://bitbucket.org/pypy/benchmarks/changeset/ab6c3e5c29b6/ Log:update sphinx to 1.8.5 diff too long, truncating to 2000 out of 230237 lines diff --git a/lib/cpython-doc/conf.py b/lib/cpython-do

[pypy-commit] pypy py3.7: just import _collections_abc directly

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98467:1412c2b6d12a Date: 2020-01-06 21:37 +0100 http://bitbucket.org/pypy/pypy/changeset/1412c2b6d12a/ Log:just import _collections_abc directly diff --git a/lib_pypy/_decimal.py b/lib_pypy/_decimal.py --- a/lib_pypy/_decimal.py +

[pypy-commit] pypy py3.7: fix test

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98466:94f0acbc392d Date: 2020-01-06 21:26 +0100 http://bitbucket.org/pypy/pypy/changeset/94f0acbc392d/ Log:fix test diff --git a/lib-python/3/test/test_contextlib.py b/lib-python/3/test/test_contextlib.py --- a/lib-python/3/test/

[pypy-commit] pypy py3.7: fix translation

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98465:1d123ac3bc5a Date: 2020-01-06 21:26 +0100 http://bitbucket.org/pypy/pypy/changeset/1d123ac3bc5a/ Log:fix translation diff --git a/pypy/interpreter/astcompiler/unparse.py b/pypy/interpreter/astcompiler/unparse.py --- a/pypy/

[pypy-commit] pypy py3.6-sqlite: Tests and fix for the 'table locked' issue

2020-01-06 Thread rlamy
Author: Ronan Lamy Branch: py3.6-sqlite Changeset: r98468:614cd53df90c Date: 2020-01-06 21:52 +0100 http://bitbucket.org/pypy/pypy/changeset/614cd53df90c/ Log:Tests and fix for the 'table locked' issue diff --git a/extra_tests/test_sqlite3.py b/extra_tests/test_sqlite3.py --- a/extra_tests/t

[pypy-commit] pypy py3.6-sqlite: Fix refcounting semantics dependency in stdlib test

2020-01-06 Thread rlamy
Author: Ronan Lamy Branch: py3.6-sqlite Changeset: r98469:cdcc30d43196 Date: 2020-01-06 22:00 +0100 http://bitbucket.org/pypy/pypy/changeset/cdcc30d43196/ Log:Fix refcounting semantics dependency in stdlib test diff --git a/lib-python/3/sqlite3/test/regression.py b/lib-python/3/sqlite3/test

[pypy-commit] pypy default: import unicode 11.0.0

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r98470:faec3f511013 Date: 2020-01-06 22:15 +0100 http://bitbucket.org/pypy/pypy/changeset/faec3f511013/ Log:import unicode 11.0.0 diff too long, truncating to 2000 out of 120648 lines diff --git a/rpython/rlib/unicodedata/CaseFolding-1

[pypy-commit] pypy py3.6: merge default

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.6 Changeset: r98471:7d7adfbb545b Date: 2020-01-06 22:17 +0100 http://bitbucket.org/pypy/pypy/changeset/7d7adfbb545b/ Log:merge default diff too long, truncating to 2000 out of 120874 lines diff --git a/extra_tests/cffi_tests/cffi0/test_ownlib.

[pypy-commit] pypy default: waaaaa, please don't compare versions as strings :-(

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r98473:6166d0635a36 Date: 2020-01-06 23:09 +0100 http://bitbucket.org/pypy/pypy/changeset/6166d0635a36/ Log:wa, please don't compare versions as strings :-( diff --git a/rpython/rlib/unicodedata/generate_unicodedb.py b/rpython/rlib

[pypy-commit] pypy py3.7: switch to unicode version 11

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98475:6fc65fdb504c Date: 2020-01-06 23:10 +0100 http://bitbucket.org/pypy/pypy/changeset/6fc65fdb504c/ Log:switch to unicode version 11 diff --git a/pypy/module/unicodedata/interp_ucd.py b/pypy/module/unicodedata/interp_ucd.py --

[pypy-commit] pypy py3.7: merge heads

2020-01-06 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: py3.7 Changeset: r98474:338458b7bc73 Date: 2020-01-06 23:09 +0100 http://bitbucket.org/pypy/pypy/changeset/338458b7bc73/ Log:merge heads diff --git a/rpython/rlib/unicodedata/generate_unicodedb.py b/rpython/rlib/unicodedata/generate_unicodedb.py -