[pypy-commit] stmgc bag: in-progress: add locks

2015-01-25 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1590:d0a565d0fc07 Date: 2015-01-25 09:35 +0100 http://bitbucket.org/pypy/stmgc/changeset/d0a565d0fc07/ Log:in-progress: add locks diff --git a/c7/stm/bag.c b/c7/stm/bag.c --- a/c7/stm/bag.c +++ b/c7/stm/bag.c @@ -23,6 +23,8 @@ | already |

[pypy-commit] pypy stdlib-2.7.9: Fix remaining failures in test_ttk_guionly

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75515:66226c524e36 Date: 2015-01-25 17:08 +0100 http://bitbucket.org/pypy/pypy/changeset/66226c524e36/ Log:Fix remaining failures in test_ttk_guionly diff --git a/lib-python/2.7/lib-tk/test/test_ttk/test_extensions.py b/lib-pytho

[pypy-commit] pypy stdlib-2.7.9: Fix many errors in test_tk

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75512:bb36e19b9328 Date: 2015-01-24 21:55 +0100 http://bitbucket.org/pypy/pypy/changeset/bb36e19b9328/ Log:Fix many errors in test_tk diff --git a/lib_pypy/_tkinter/__init__.py b/lib_pypy/_tkinter/__init__.py --- a/lib_pypy/_tkint

[pypy-commit] pypy stdlib-2.7.9: Fix last failures in test_tk

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75514:3931bad51c08 Date: 2015-01-25 16:58 +0100 http://bitbucket.org/pypy/pypy/changeset/3931bad51c08/ Log:Fix last failures in test_tk diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.p

[pypy-commit] pypy stdlib-2.7.9: Fix more tkinter tests

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75513:4360c70a0171 Date: 2015-01-24 22:47 +0100 http://bitbucket.org/pypy/pypy/changeset/4360c70a0171/ Log:Fix more tkinter tests diff --git a/lib-python/2.7/lib-tk/test/test_tkinter/test_images.py b/lib-python/2.7/lib-tk/test/te

[pypy-commit] pypy stdlib-2.7.9: Try to fix 32bit translation

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75511:e5c65536a65a Date: 2015-01-24 10:16 +0100 http://bitbucket.org/pypy/pypy/changeset/e5c65536a65a/ Log:Try to fix 32bit translation diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/module

[pypy-commit] pypy stdlib-2.7.9: ssl: add SSLContext.load_dh_params()

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75516:35f8bc7e346a Date: 2015-01-25 17:37 +0100 http://bitbucket.org/pypy/pypy/changeset/35f8bc7e346a/ Log:ssl: add SSLContext.load_dh_params() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pyp

[pypy-commit] pypy stdlib-2.7.9: Lots of improvement to the SSLError class.

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75517:ad8cb0a374b6 Date: 2015-01-25 19:55 +0100 http://bitbucket.org/pypy/pypy/changeset/ad8cb0a374b6/ Log:Lots of improvement to the SSLError class. diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py ---

[pypy-commit] pypy stdlib-2.7.9: Add missing file

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75518:21af94f28e21 Date: 2015-01-25 19:59 +0100 http://bitbucket.org/pypy/pypy/changeset/21af94f28e21/ Log:Add missing file diff --git a/pypy/module/_ssl/ssl_data.py b/pypy/module/_ssl/ssl_data.py new file mode 100644 --- /dev/nul

[pypy-commit] pypy stdlib-2.7.9: SSLSocket.read() accepts a buffer, and works like a readinto()

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75522:d70a221356f9 Date: 2015-01-25 22:55 +0100 http://bitbucket.org/pypy/pypy/changeset/d70a221356f9/ Log:SSLSocket.read() accepts a buffer, and works like a readinto() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_s

[pypy-commit] pypy stdlib-2.7.9: Another missing file

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75524:dab31bf5b271 Date: 2015-01-25 23:15 +0100 http://bitbucket.org/pypy/pypy/changeset/dab31bf5b271/ Log:Another missing file diff --git a/pypy/module/_ssl/test/dh512.pem b/pypy/module/_ssl/test/dh512.pem new file mode 100644 --

[pypy-commit] pypy stdlib-2.7.9: Fix one deadlock in test_ssl

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75521:7100871097ec Date: 2015-01-25 21:50 +0100 http://bitbucket.org/pypy/pypy/changeset/7100871097ec/ Log:Fix one deadlock in test_ssl diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/module

[pypy-commit] pypy stdlib-2.7.9: Add SSLSocket.compression()

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75519:57cdfe00b84e Date: 2015-01-25 21:23 +0100 http://bitbucket.org/pypy/pypy/changeset/57cdfe00b84e/ Log:Add SSLSocket.compression() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/module/

[pypy-commit] pypy stdlib-2.7.9: Add SSLSocket.version()

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75520:360740259e7f Date: 2015-01-25 21:27 +0100 http://bitbucket.org/pypy/pypy/changeset/360740259e7f/ Log:Add SSLSocket.version() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/module/_ssl

[pypy-commit] pypy stdlib-2.7.9: Add SSLSocket.tls_unique_cb()

2015-01-25 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75523:88b9caf2a309 Date: 2015-01-25 23:13 +0100 http://bitbucket.org/pypy/pypy/changeset/88b9caf2a309/ Log:Add SSLSocket.tls_unique_cb() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/modul