[pypy-commit] pypy py3.7-time-minor-bpos: merge py3.7 into py3.7-time-minor-bpos

2019-12-29 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-time-minor-bpos Changeset: r98403:29f5a19c932a Date: 2019-12-29 15:44 +0100 http://bitbucket.org/pypy/pypy/changeset/29f5a19c932a/ Log:merge py3.7 into py3.7-time-minor-bpos diff too long, truncating to 2000 out of 25236 lines diff --git a/.hgtags b/.hgt

[pypy-commit] pypy py3.7-time-minor-bpos: Implement bpo-32025: Add time.thread_time()

2019-12-29 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-time-minor-bpos Changeset: r98404:7f949f5fb55c Date: 2019-12-29 17:57 +0100 http://bitbucket.org/pypy/pypy/changeset/7f949f5fb55c/ Log:Implement bpo-32025: Add time.thread_time() diff --git a/pypy/module/time/interp_time.py b/pypy/module/time/interp_time.

[pypy-commit] pypy py3.7-bpo-30399: Implement bpo-30399: Get rid of trailing comma in the repr of BaseException

2019-12-29 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-30399 Changeset: r98405:705f6a3a7d9a Date: 2019-12-29 21:25 +0100 http://bitbucket.org/pypy/pypy/changeset/705f6a3a7d9a/ Log:Implement bpo-30399: Get rid of trailing comma in the repr of BaseException diff --git a/lib-python/3/test/test_gdb.py

[pypy-commit] pypy py3.7-bpo-30399: Undo change to trailing commas in exception repr strings in lib-python/3/test/test_gdb.py

2019-12-29 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-30399 Changeset: r98406:49811c96e106 Date: 2019-12-29 21:36 +0100 http://bitbucket.org/pypy/pypy/changeset/49811c96e106/ Log:Undo change to trailing commas in exception repr strings in lib- python/3/test/test_gdb.py diff --git a/lib-python/3/t

[pypy-commit] pypy py3.7-bpo-30103: Implement bpo-30103: Allow Uuencode in Python using backtick as zero instead of space

2019-12-29 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: py3.7-bpo-30103 Changeset: r98407:53ee6dae816a Date: 2019-12-29 23:27 +0100 http://bitbucket.org/pypy/pypy/changeset/53ee6dae816a/ Log:Implement bpo-30103: Allow Uuencode in Python using backtick as zero instead of space diff --git a/pypy/module/binasci

[pypy-commit] pypy bpo-16055: Implement bpo-16055: Fixes incorrect error text for int('1', base=1000)

2019-12-29 Thread Yannick_Jadoul
Author: Yannick Jadoul Branch: bpo-16055 Changeset: r98408:d6cd8aee750b Date: 2019-12-30 02:34 +0100 http://bitbucket.org/pypy/pypy/changeset/d6cd8aee750b/ Log:Implement bpo-16055: Fixes incorrect error text for int('1', base=1000) diff --git a/rpython/rlib/rstring.py b/rpython/rlib/