[pypy-commit] pypy vendor/stdlib: add how-to-update

2019-05-20 Thread mattip
Author: Matti Picus Branch: vendor/stdlib Changeset: r96642:873173b17a5e Date: 2019-05-20 12:56 +0300 http://bitbucket.org/pypy/pypy/changeset/873173b17a5e/ Log:add how-to-update diff --git a/lib-python/stdlib-upgrade.txt b/lib-python/stdlib-upgrade.txt new file mode 100644 --- /dev/null +++

[pypy-commit] pypy vendor/stdlib: update to v2.7.16

2019-05-20 Thread mattip
Author: Matti Picus Branch: vendor/stdlib Changeset: r96641:1779edf5c1e3 Date: 2019-05-20 12:55 +0300 http://bitbucket.org/pypy/pypy/changeset/1779edf5c1e3/ Log:update to v2.7.16 diff too long, truncating to 2000 out of 46268 lines diff --git a/lib-python/2.7/HTMLParser.py b/lib-python/2.7/

[pypy-commit] pypy stdlib-2.7.16: merge new stdlib into branch

2019-05-20 Thread mattip
Author: Matti Picus Branch: stdlib-2.7.16 Changeset: r96643:c8bdc9146f6e Date: 2019-05-20 14:05 +0300 http://bitbucket.org/pypy/pypy/changeset/c8bdc9146f6e/ Log:merge new stdlib into branch diff too long, truncating to 2000 out of 46648 lines diff --git a/lib-python/2.7/HTMLParser.py b/lib-

[pypy-commit] pypy vendor/stdlib-2.7.16: abandon branch

2019-05-20 Thread mattip
Author: Matti Picus Branch: vendor/stdlib-2.7.16 Changeset: r96640:9c5ebfaa4643 Date: 2019-05-20 11:27 +0300 http://bitbucket.org/pypy/pypy/changeset/9c5ebfaa4643/ Log:abandon branch diff --git a/lib-python/2.7/UserDict.py b/lib-python/2.7/UserDict.py --- a/lib-python/2.7/UserDict.py +++ b/l

[pypy-commit] pypy stdlib-2.7.16: add _ssl.HAS_TLSv1_3

2019-05-20 Thread mattip
Author: Matti Picus Branch: stdlib-2.7.16 Changeset: r96644:c59a0f5fdb0d Date: 2019-05-19 23:14 +0300 http://bitbucket.org/pypy/pypy/changeset/c59a0f5fdb0d/ Log:add _ssl.HAS_TLSv1_3 diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/module/_ssl/interp_ssl

[pypy-commit] pypy stdlib-2.7.16: register new tests

2019-05-20 Thread mattip
Author: Matti Picus Branch: stdlib-2.7.16 Changeset: r96645:51b61fa2015d Date: 2019-05-20 16:05 +0300 http://bitbucket.org/pypy/pypy/changeset/51b61fa2015d/ Log:register new tests diff --git a/lib-python/conftest.py b/lib-python/conftest.py --- a/lib-python/conftest.py +++ b/lib-python/conft

[pypy-commit] pypy default: update certificates per cpython issue 36816 PR 13199

2019-05-20 Thread mattip
Author: Matti Picus Branch: Changeset: r96646:4560d56a123a Date: 2019-05-20 19:34 +0300 http://bitbucket.org/pypy/pypy/changeset/4560d56a123a/ Log:update certificates per cpython issue 36816 PR 13199 diff --git a/lib-python/2.7/test/capath/efa5f9c3.0 b/lib-python/2.7/test/capath/efa5f9c3.0

[pypy-commit] pypy cffi-libs: backport package.py, build_cffi_imports from py3.6

2019-05-20 Thread mattip
Author: Matti Picus Branch: cffi-libs Changeset: r96648:8ae1951978c7 Date: 2019-05-20 22:21 +0300 http://bitbucket.org/pypy/pypy/changeset/8ae1951978c7/ Log:backport package.py, build_cffi_imports from py3.6 diff --git a/pypy/tool/build_cffi_imports.py b/pypy/tool/build_cffi_imports.py --- a

[pypy-commit] pypy winmultiprocessing: Corrected parameters to RSocket call.

2019-05-20 Thread andrewjlawrence
Author: andrewjlawrence Branch: winmultiprocessing Changeset: r96649:884c7e6b4d3a Date: 2019-05-20 21:15 +0100 http://bitbucket.org/pypy/pypy/changeset/884c7e6b4d3a/ Log:Corrected parameters to RSocket call. diff --git a/pypy/module/_socket/interp_socket.py b/pypy/module/_socket/interp_socke

[pypy-commit] pypy cffi-libs: fix mro of SSLError

2019-05-20 Thread mattip
Author: Matti Picus Branch: cffi-libs Changeset: r96651:7bd108e790be Date: 2019-05-21 07:53 +0300 http://bitbucket.org/pypy/pypy/changeset/7bd108e790be/ Log:fix mro of SSLError diff --git a/lib_pypy/_cffi_ssl/_stdssl/error.py b/lib_pypy/_cffi_ssl/_stdssl/error.py --- a/lib_pypy/_cffi_ssl/_s

[pypy-commit] pypy default: avoid void* arithmetic by changing vp += val to vp = (char*)vp + v, fix win32?

2019-05-20 Thread mattip
Author: Matti Picus Branch: Changeset: r96650:1939f3b020f8 Date: 2019-05-21 06:53 +0300 http://bitbucket.org/pypy/pypy/changeset/1939f3b020f8/ Log:avoid void* arithmetic by changing vp += val to vp = (char*)vp + v, fix win32? diff --git a/rpython/translator/c/gc.py b/rpython/transla

[pypy-commit] pypy cffi-libs: nicer cleanup on failure in background thread function

2019-05-20 Thread mattip
Author: Matti Picus Branch: cffi-libs Changeset: r96652:39c032729bb6 Date: 2019-05-21 08:35 +0300 http://bitbucket.org/pypy/pypy/changeset/39c032729bb6/ Log:nicer cleanup on failure in background thread function diff --git a/lib-python/2.7/test/test_ftplib.py b/lib-python/2.7/test/test_ftpl

[pypy-commit] pypy cffi-libs: fix error type

2019-05-20 Thread mattip
Author: Matti Picus Branch: cffi-libs Changeset: r96653:d97ff7da2e37 Date: 2019-05-21 09:09 +0300 http://bitbucket.org/pypy/pypy/changeset/d97ff7da2e37/ Log:fix error type diff --git a/lib_pypy/_cffi_ssl/_stdssl/error.py b/lib_pypy/_cffi_ssl/_stdssl/error.py --- a/lib_pypy/_cffi_ssl/_stdssl