[pypy-commit] pypy py3.3: Really implement __qualname__ for nested blocks.

2014-12-18 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75022:9ebba4eb7768 Date: 2014-12-18 22:36 +0100 http://bitbucket.org/pypy/pypy/changeset/9ebba4eb7768/ Log:Really implement __qualname__ for nested blocks. diff --git a/lib-python/3/importlib/_bootstrap.py b/lib-python/3/importlib/_boot

[pypy-commit] pypy py3.3: Add Function.__qualname__, basic form.

2014-12-18 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75021:a81d1ddf3dfe Date: 2014-12-18 22:36 +0100 http://bitbucket.org/pypy/pypy/changeset/a81d1ddf3dfe/ Log:Add Function.__qualname__, basic form. diff --git a/pypy/interpreter/function.py b/pypy/interpreter/function.py --- a/pypy/interpr

[pypy-commit] pypy py3.3: Restore pickle of dict iterators.

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75138:3a37dfe596eb Date: 2014-12-19 20:26 +0100 http://bitbucket.org/pypy/pypy/changeset/3a37dfe596eb/ Log:Restore pickle of dict iterators. (The comment was wrong: we do have the original dict, this makes things much easier) dif

[pypy-commit] pypy py3.3: Add Tcl_Obj.__eq__, fixes many tests

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75142:baf22eaf17ee Date: 2014-12-21 10:33 +0100 http://bitbucket.org/pypy/pypy/changeset/baf22eaf17ee/ Log:Add Tcl_Obj.__eq__, fixes many tests diff --git a/lib_pypy/_tkinter/tclobj.py b/lib_pypy/_tkinter/tclobj.py --- a/lib_pypy/_tkinte

[pypy-commit] pypy py3.3: Fix a bit the stack trace formatted by FaultHandler

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75139:3d0aa9a34f0a Date: 2014-12-19 20:30 +0100 http://bitbucket.org/pypy/pypy/changeset/3d0aa9a34f0a/ Log:Fix a bit the stack trace formatted by FaultHandler diff --git a/pypy/module/faulthandler/interp_faulthandler.py b/pypy/module/fa

[pypy-commit] pypy py3.3: Add faulthandler._fatal_error()

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75140:45ae7aa92dd8 Date: 2014-12-21 10:15 +0100 http://bitbucket.org/pypy/pypy/changeset/45ae7aa92dd8/ Log:Add faulthandler._fatal_error() diff --git a/pypy/module/faulthandler/__init__.py b/pypy/module/faulthandler/__init__.py --- a/py

[pypy-commit] pypy py3.3: Fix most tcl tests

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75144:63b83c822ed6 Date: 2014-12-21 11:16 +0100 http://bitbucket.org/pypy/pypy/changeset/63b83c822ed6/ Log:Fix most tcl tests diff --git a/lib-python/3/tkinter/test/test_tkinter/test_variables.py b/lib-python/3/tkinter/test/test_tkinter

[pypy-commit] pypy py3.3: Fix the last tcl.split failure.

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75146:adef746e8660 Date: 2014-12-21 12:01 +0100 http://bitbucket.org/pypy/pypy/changeset/adef746e8660/ Log:Fix the last tcl.split failure. diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.py ++

[pypy-commit] pypy py3.3: tkinter: rename TclObject to Tcl_Obj, and expose it

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75141:778fe234a558 Date: 2014-12-21 10:30 +0100 http://bitbucket.org/pypy/pypy/changeset/778fe234a558/ Log:tkinter: rename TclObject to Tcl_Obj, and expose it diff --git a/lib_pypy/_tkinter/__init__.py b/lib_pypy/_tkinter/__init__.py ---

[pypy-commit] pypy py3.3: test_ttk: Progress

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75147:e761d5274b75 Date: 2014-12-21 12:32 +0100 http://bitbucket.org/pypy/pypy/changeset/e761d5274b75/ Log:test_ttk: Progress diff --git a/lib-python/3/tkinter/test/test_ttk/test_extensions.py b/lib-python/3/tkinter/test/test_ttk/test_e

[pypy-commit] pypy py3.3: tkinter: Fix conversion of varnames

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75143:a640fa296140 Date: 2014-12-21 10:38 +0100 http://bitbucket.org/pypy/pypy/changeset/a640fa296140/ Log:tkinter: Fix conversion of varnames diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.p

[pypy-commit] pypy py3.3: Implement the opener parameter of io.open()

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75148:8af0b2050bd1 Date: 2014-12-21 17:33 +0100 http://bitbucket.org/pypy/pypy/changeset/8af0b2050bd1/ Log:Implement the opener parameter of io.open() diff --git a/pypy/module/_io/interp_fileio.py b/pypy/module/_io/interp_fileio.py --- a

[pypy-commit] pypy py3.3: More fixes: tcl functions take strings, not bytes

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75145:ac735d653e72 Date: 2014-12-21 11:22 +0100 http://bitbucket.org/pypy/pypy/changeset/ac735d653e72/ Log:More fixes: tcl functions take strings, not bytes diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/

[pypy-commit] pypy py3.3: Rework the OSError initialization, so that __init__ and __new__

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75149:ad6333658219 Date: 2014-12-29 21:39 +0100 http://bitbucket.org/pypy/pypy/changeset/ad6333658219/ Log:Rework the OSError initialization, so that __init__ and __new__ can be overridden and accept additional arguments (CPython

[pypy-commit] pypy py3.3: Update the _multibytecodec C files with the ones from CPython version 3.3.5

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75163:342524c121fd Date: 2014-12-29 23:38 +0100 http://bitbucket.org/pypy/pypy/changeset/342524c121fd/ Log:Update the _multibytecodec C files with the ones from CPython version 3.3.5 diff --git a/pypy/module/_multibytecodec/src/c

[pypy-commit] pypy py3.3: Avoid crash in OSError.__str__()

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75165:d04014eeb0f2 Date: 2014-12-30 16:33 +0100 http://bitbucket.org/pypy/pypy/changeset/d04014eeb0f2/ Log:Avoid crash in OSError.__str__() diff --git a/pypy/module/exceptions/interp_exceptions.py b/pypy/module/exceptions/interp_excepti

[pypy-commit] pypy py3.3: Fix test, like in py3k branch

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75164:a03e2a0dd546 Date: 2014-12-30 16:14 +0100 http://bitbucket.org/pypy/pypy/changeset/a03e2a0dd546/ Log:Fix test, like in py3k branch diff --git a/lib-python/3/test/test_fileio.py b/lib-python/3/test/test_fileio.py --- a/lib-python/3/

[pypy-commit] pypy py3.3: Apply the same changes as the py3k branch

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75162:0edf9ccb3b63 Date: 2014-12-29 22:34 +0100 http://bitbucket.org/pypy/pypy/changeset/0edf9ccb3b63/ Log:Apply the same changes as the py3k branch diff --git a/lib-python/3/test/test_code.py b/lib-python/3/test/test_code.py --- a/lib-p

[pypy-commit] pypy py3.3: hg merge heads

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75167:c4e17f979ee1 Date: 2014-12-30 17:21 +0100 http://bitbucket.org/pypy/pypy/changeset/c4e17f979ee1/ Log:hg merge heads diff too long, truncating to 2000 out of 15310 lines diff --git a/README.rst b/README.rst --- a/README.rst +++ b/R

[pypy-commit] pypy py3.3: regrtest.py has changed, and many test modules use the standard unittest

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75166:bf3f2a3c98f3 Date: 2014-12-30 17:20 +0100 http://bitbucket.org/pypy/pypy/changeset/bf3f2a3c98f3/ Log:regrtest.py has changed, and many test modules use the standard unittest discovery method. This should get many new failure

[pypy-commit] pypy py3.3: Fix compilation, I think

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75168:4c7c31a7377d Date: 2014-12-30 18:02 +0100 http://bitbucket.org/pypy/pypy/changeset/4c7c31a7377d/ Log:Fix compilation, I think diff --git a/pypy/module/faulthandler/faulthandler.h b/pypy/module/faulthandler/faulthandler.h --- a/pyp

[pypy-commit] pypy py3.3: Kill the interp-level version of the _lzma module,

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75171:db1b4ba4d7e5 Date: 2014-12-30 19:48 +0100 http://bitbucket.org/pypy/pypy/changeset/db1b4ba4d7e5/ Log:Kill the interp-level version of the _lzma module, and import the one from lzmaffi on PyPI. diff --git a/lib_pypy/_lzma.py

[pypy-commit] pypy py3.3: Implement abstract methods and properties: they simply fetch the

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75173:f215d396c1f4 Date: 2014-12-30 22:25 +0100 http://bitbucket.org/pypy/pypy/changeset/f215d396c1f4/ Log:Implement abstract methods and properties: they simply fetch the __isabstractmethod__ property from the underlying callable

[pypy-commit] pypy py3.3: Fix tests to pass with -A and CPython3.3

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75170:edc9c50db790 Date: 2014-12-30 19:30 +0100 http://bitbucket.org/pypy/pypy/changeset/edc9c50db790/ Log:Fix tests to pass with -A and CPython3.3 diff --git a/pypy/interpreter/test/test_compiler.py b/pypy/interpreter/test/test_compile

[pypy-commit] pypy py3.3: Add a License paragraph, and compile lzmaffi in the release step.

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75172:862db03baae8 Date: 2014-12-30 20:05 +0100 http://bitbucket.org/pypy/pypy/changeset/862db03baae8/ Log:Add a License paragraph, and compile lzmaffi in the release step. diff --git a/LICENSE b/LICENSE --- a/LICENSE +++ b/LICENSE @@ -4

[pypy-commit] pypy py3.3: Full implementation of the audioop module!

2014-12-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75175:96b5281e7963 Date: 2014-12-30 23:57 +0100 http://bitbucket.org/pypy/pypy/changeset/96b5281e7963/ Log:Full implementation of the audioop module! Reuse large parts of C code from CPython, and use cffi to access it. diff --git

[pypy-commit] pypy py3.3: audioop: Use cffi instead of ctypes to create mutable buffers

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75190:f9375d4e25c3 Date: 2014-12-31 16:32 +0100 http://bitbucket.org/pypy/pypy/changeset/f9375d4e25c3/ Log:audioop: Use cffi instead of ctypes to create mutable buffers also precompile the module. diff --git a/lib_pypy/audioop.py

[pypy-commit] pypy py3.3: Fix compiler tests, broken when I added the __qualname__ attribute.

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75188:b768017bc82f Date: 2014-12-31 14:29 +0100 http://bitbucket.org/pypy/pypy/changeset/b768017bc82f/ Log:Fix compiler tests, broken when I added the __qualname__ attribute. diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/i

[pypy-commit] pypy py3.3: Fix many tests in interpreter/

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75189:21aecd71f599 Date: 2014-12-31 16:24 +0100 http://bitbucket.org/pypy/pypy/changeset/21aecd71f599/ Log:Fix many tests in interpreter/ diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py --- a/pypy/interpreter/app

[pypy-commit] pypy default: (larstiq) Tell virtualenv to copy libpypy-c.dylib as well.

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r75191:3fcbbd6f6e29 Date: 2014-12-31 16:39 +0100 http://bitbucket.org/pypy/pypy/changeset/3fcbbd6f6e29/ Log:(larstiq) Tell virtualenv to copy libpypy-c.dylib as well. diff --git a/lib-python/2.7/subprocess.py b/lib-python/2.7/subprocess.py ---

[pypy-commit] pypy py3.3: Skip c_bisect tests

2015-01-01 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75198:078576d9d66c Date: 2015-01-01 16:10 +0100 http://bitbucket.org/pypy/pypy/changeset/078576d9d66c/ Log:Skip c_bisect tests diff --git a/lib-python/3/test/test_bisect.py b/lib-python/3/test/test_bisect.py --- a/lib-python/3/test/test_

[pypy-commit] pypy py3.3: array: Correctly convert bigint object to longlong numbers.

2015-01-01 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75200:235ef201d238 Date: 2015-01-01 18:58 +0100 http://bitbucket.org/pypy/pypy/changeset/235ef201d238/ Log:array: Correctly convert bigint object to longlong numbers. diff --git a/pypy/module/array/interp_array.py b/pypy/module/array/in

[pypy-commit] pypy py3.3: Fix tests to pass with -A and cpython3.3.

2015-01-01 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75199:5494a2d79290 Date: 2015-01-01 18:57 +0100 http://bitbucket.org/pypy/pypy/changeset/5494a2d79290/ Log:Fix tests to pass with -A and cpython3.3. + Allow some bytes functions to search for integers instead of single chars. dif

[pypy-commit] pypy py3.3: Array module: Implement the LongLong typecodes.

2015-01-01 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75196:ae5a2b000fdb Date: 2014-12-31 16:59 +0100 http://bitbucket.org/pypy/pypy/changeset/ae5a2b000fdb/ Log:Array module: Implement the LongLong typecodes. diff --git a/pypy/module/array/interp_array.py b/pypy/module/array/interp_array.p

[pypy-commit] pypy py3.3: Implement CPython Issue #12199:

2015-01-01 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75197:41f2d5146ca3 Date: 2015-01-01 16:05 +0100 http://bitbucket.org/pypy/pypy/changeset/41f2d5146ca3/ Log:Implement CPython Issue #12199: The TryExcept and TryFinally and AST nodes have been unified into a Try node. diff --git a

[pypy-commit] pypy py3.3: Make SimpleNamespace even simpler,

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75221:ef09df7491bd Date: 2015-01-01 20:53 +0100 http://bitbucket.org/pypy/pypy/changeset/ef09df7491bd/ Log:Make SimpleNamespace even simpler, because it's now a mutable object. diff --git a/pypy/module/sys/app.py b/pypy/module/sy

[pypy-commit] pypy py3.3: Update _testcapimodule.c with CPython3.3

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75225:08430c91ae5f Date: 2015-01-01 23:12 +0100 http://bitbucket.org/pypy/pypy/changeset/08430c91ae5f/ Log:Update _testcapimodule.c with CPython3.3 diff --git a/lib-python/3/test/test_capi.py b/lib-python/3/test/test_capi.py --- a/lib-py

[pypy-commit] pypy py3.3: Add move validation for ast.Try

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75222:22011d79ba65 Date: 2015-01-01 22:38 +0100 http://bitbucket.org/pypy/pypy/changeset/22011d79ba65/ Log:Add move validation for ast.Try diff --git a/pypy/interpreter/astcompiler/validate.py b/pypy/interpreter/astcompiler/validate.py

[pypy-commit] pypy py3.3: Add bytearray.copy(), bytearray.clear()

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75224:d8fae768da4c Date: 2015-01-01 22:51 +0100 http://bitbucket.org/pypy/pypy/changeset/d8fae768da4c/ Log:Add bytearray.copy(), bytearray.clear() diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py

[pypy-commit] pypy py3.3: Add signal.sigpending()

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75232:6a4993eee75c Date: 2015-01-04 19:04 +0100 http://bitbucket.org/pypy/pypy/changeset/6a4993eee75c/ Log:Add signal.sigpending() diff --git a/pypy/module/signal/__init__.py b/pypy/module/signal/__init__.py --- a/pypy/module/signal/__in

[pypy-commit] pypy py3.3: bytes.count() accepts an int for a character.

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75223:1db171bd1fdb Date: 2015-01-01 22:42 +0100 http://bitbucket.org/pypy/pypy/changeset/1db171bd1fdb/ Log:bytes.count() accepts an int for a character. diff --git a/pypy/objspace/std/stringmethods.py b/pypy/objspace/std/stringmethods.p

[pypy-commit] pypy py3.3: dictproxy.copy() should use the proxied object and not always return a dict.

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75227:6048008be2aa Date: 2015-01-02 12:22 +0100 http://bitbucket.org/pypy/pypy/changeset/6048008be2aa/ Log:dictproxy.copy() should use the proxied object and not always return a dict. diff --git a/pypy/objspace/std/dictmultiobjec

[pypy-commit] pypy py3.3: Add signal.pthread_sigmask()

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75231:849428da8b0f Date: 2015-01-04 18:51 +0100 http://bitbucket.org/pypy/pypy/changeset/849428da8b0f/ Log:Add signal.pthread_sigmask() diff --git a/pypy/module/signal/__init__.py b/pypy/module/signal/__init__.py --- a/pypy/module/signal

[pypy-commit] pypy py3.3: Fix: 'a' in dictproxy() should not raise KeyError

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75220:a3cb64940229 Date: 2015-01-01 20:25 +0100 http://bitbucket.org/pypy/pypy/changeset/a3cb64940229/ Log:Fix: 'a' in dictproxy() should not raise KeyError diff --git a/pypy/objspace/std/dictproxyobject.py b/pypy/objspace/std/dictproxy

[pypy-commit] pypy py3.3: Easy additions to cpyext, needed for _testcapi

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75226:f93c5b218a24 Date: 2015-01-02 12:21 +0100 http://bitbucket.org/pypy/pypy/changeset/f93c5b218a24/ Log:Easy additions to cpyext, needed for _testcapi diff --git a/pypy/module/cpyext/include/Python.h b/pypy/module/cpyext/include/Pyth

[pypy-commit] pypy py3.3: Add signal.sigwait()

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75230:385525065b2d Date: 2015-01-04 14:29 +0100 http://bitbucket.org/pypy/pypy/changeset/385525065b2d/ Log:Add signal.sigwait() diff --git a/pypy/module/signal/__init__.py b/pypy/module/signal/__init__.py --- a/pypy/module/signal/__init_

[pypy-commit] pypy py3.3: dictproxy() should only accept mappings

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75228:ed4e7c9f2fd6 Date: 2015-01-02 14:54 +0100 http://bitbucket.org/pypy/pypy/changeset/ed4e7c9f2fd6/ Log:dictproxy() should only accept mappings diff --git a/pypy/objspace/std/dictproxyobject.py b/pypy/objspace/std/dictproxyobject.py

[pypy-commit] pypy py3.3: Add signal.pthread_kill

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75229:59d5157e77a5 Date: 2015-01-02 21:35 +0100 http://bitbucket.org/pypy/pypy/changeset/59d5157e77a5/ Log:Add signal.pthread_kill diff --git a/pypy/module/signal/__init__.py b/pypy/module/signal/__init__.py --- a/pypy/module/signal/__in

[pypy-commit] pypy py3.3: in release.py, import lzma instead of _lzma because of an import loop

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75235:4e2ba5029f10 Date: 2015-01-04 21:20 +0100 http://bitbucket.org/pypy/pypy/changeset/4e2ba5029f10/ Log:in release.py, import lzma instead of _lzma because of an import loop (distutils imports zip which imports lzma). + Rename

[pypy-commit] pypy py3.3: The wakeup_fd() file now receives the signal number (instead of \0)

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75236:bd0bc88bec39 Date: 2015-01-04 22:17 +0100 http://bitbucket.org/pypy/pypy/changeset/bd0bc88bec39/ Log:The wakeup_fd() file now receives the signal number (instead of \0) Write it carefully so that rpython/ can still be shared

[pypy-commit] pypy py3.3: sigwait() should release the GIL, of course

2015-01-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75237:bbc4e9886199 Date: 2015-01-04 23:38 +0100 http://bitbucket.org/pypy/pypy/changeset/bbc4e9886199/ Log:sigwait() should release the GIL, of course (I thought it was the default?) diff --git a/rpython/rlib/rsignal.py b/rpython

[pypy-commit] pypy py3.3: Function.__repr__ now uses the __qualname__ attribute.

2015-01-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75249:c27d75f38838 Date: 2015-01-05 22:35 +0100 http://bitbucket.org/pypy/pypy/changeset/c27d75f38838/ Log:Function.__repr__ now uses the __qualname__ attribute. diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/interpreter/as

[pypy-commit] pypy py3.3: Port CPython issue18109, which has no test :-/

2015-01-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75248:bbfa38c0f158 Date: 2015-01-05 22:34 +0100 http://bitbucket.org/pypy/pypy/changeset/bbfa38c0f158/ Log:Port CPython issue18109, which has no test :-/ diff --git a/pypy/module/_socket/interp_func.py b/pypy/module/_socket/interp_func.

[pypy-commit] pypy py3.3: CPython Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw

2015-01-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75250:4eebc41245ad Date: 2015-01-05 23:45 +0100 http://bitbucket.org/pypy/pypy/changeset/4eebc41245ad/ Log:CPython Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw stream's read() returns more bytes

[pypy-commit] pypy py3.3: Unskip test about ast.Try, and fix it.

2015-01-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75251:8c6a64ce91ed Date: 2015-01-06 00:30 +0100 http://bitbucket.org/pypy/pypy/changeset/8c6a64ce91ed/ Log:Unskip test about ast.Try, and fix it. diff --git a/pypy/interpreter/astcompiler/test/test_validate.py b/pypy/interpreter/astcomp

[pypy-commit] pypy py3.3: Use __qualname__ in type.__repr__

2015-01-08 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75258:6ad0ea075018 Date: 2015-01-08 17:27 +0100 http://bitbucket.org/pypy/pypy/changeset/6ad0ea075018/ Log:Use __qualname__ in type.__repr__ diff --git a/pypy/objspace/std/typeobject.py b/pypy/objspace/std/typeobject.py --- a/pypy/objspa

[pypy-commit] pypy py3.3: crypt.py imports _crypt.

2015-01-08 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75256:cdc9aa59d0a4 Date: 2015-01-06 09:06 +0100 http://bitbucket.org/pypy/pypy/changeset/cdc9aa59d0a4/ Log:crypt.py imports _crypt. diff --git a/pypy/module/crypt/__init__.py b/pypy/module/crypt/__init__.py --- a/pypy/module/crypt/__init

[pypy-commit] pypy py3.3: Set __qualname__ of builtin methods

2015-01-08 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75259:826457bf5cda Date: 2015-01-08 18:42 +0100 http://bitbucket.org/pypy/pypy/changeset/826457bf5cda/ Log:Set __qualname__ of builtin methods diff --git a/lib-python/3/test/test_funcattrs.py b/lib-python/3/test/test_funcattrs.py --- a/

[pypy-commit] pypy py3.3: Improve pickling of "reversed" and "enumerate" objects.

2015-01-08 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75257:4c0fc2915173 Date: 2015-01-08 17:27 +0100 http://bitbucket.org/pypy/pypy/changeset/4c0fc2915173/ Log:Improve pickling of "reversed" and "enumerate" objects. In addition, reversed is now a type. diff --git a/pypy/module/__bu

[pypy-commit] pypy py3.3: Fix translation

2015-01-08 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75260:be32e3299b5e Date: 2015-01-08 23:24 +0100 http://bitbucket.org/pypy/pypy/changeset/be32e3299b5e/ Log:Fix translation diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functional.py --- a/pypy/module/__bu

[pypy-commit] pypy py3.3: Another fix

2015-01-08 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75261:2c2d11fa98da Date: 2015-01-08 23:41 +0100 http://bitbucket.org/pypy/pypy/changeset/2c2d11fa98da/ Log:Another fix diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functional.py --- a/pypy/module/__builti

[pypy-commit] pypy py3.3: Fix stack size of MAKE_FUNCTION and MAKE_CLOSURE opcodes,

2015-01-09 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75267:bbb5d74a2b9d Date: 2015-01-09 09:33 +0100 http://bitbucket.org/pypy/pypy/changeset/bbb5d74a2b9d/ Log:Fix stack size of MAKE_FUNCTION and MAKE_CLOSURE opcodes, they changed with the introduction of __qualname__. This

[pypy-commit] pypy py3.3: Kill time.accept2dyear

2015-01-09 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75268:2ba2a9841686 Date: 2015-01-09 09:53 +0100 http://bitbucket.org/pypy/pypy/changeset/2ba2a9841686/ Log:Kill time.accept2dyear diff --git a/pypy/module/time/__init__.py b/pypy/module/time/__init__.py --- a/pypy/module/time/__init__.py

[pypy-commit] pypy kill_ll_termios: Move tcsetattr from ll_termios to rtermios

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75277:25c15bf74988 Date: 2015-01-10 00:19 +0100 http://bitbucket.org/pypy/pypy/changeset/25c15bf74988/ Log:Move tcsetattr from ll_termios to rtermios diff --git a/rpython/rlib/rtermios.py b/rpython/rlib/rtermios.py --- a/rpytho

[pypy-commit] pypy kill_ll_termios: termios.error is not used anymore in RPython

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75276:c3cfdcd2fb78 Date: 2015-01-09 23:42 +0100 http://bitbucket.org/pypy/pypy/changeset/c3cfdcd2fb78/ Log:termios.error is not used anymore in RPython diff --git a/rpython/annotator/classdef.py b/rpython/annotator/classdef.py

[pypy-commit] pypy kill_ll_termios: Move all other functions.

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75279:42c4131556e2 Date: 2015-01-10 00:33 +0100 http://bitbucket.org/pypy/pypy/changeset/42c4131556e2/ Log:Move all other functions. ll_termios is now empty. diff --git a/rpython/rlib/rtermios.py b/rpython/rlib/rtermios.py ---

[pypy-commit] pypy kill_ll_termios: Move tcgetattr

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75278:bb1f713389f1 Date: 2015-01-10 00:24 +0100 http://bitbucket.org/pypy/pypy/changeset/bb1f713389f1/ Log:Move tcgetattr diff --git a/rpython/rlib/rtermios.py b/rpython/rlib/rtermios.py --- a/rpython/rlib/rtermios.py +++ b/rpy

[pypy-commit] pypy default: Move implementation of termios functions from ll_termios to rtermios.py

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r75283:0c1f65b8adad Date: 2015-01-10 13:32 +0100 http://bitbucket.org/pypy/pypy/changeset/0c1f65b8adad/ Log:Move implementation of termios functions from ll_termios to rtermios.py diff --git a/pypy/module/termios/__init__.py b/pypy/mod

[pypy-commit] pypy kill_ll_termios: A branch to move ll_termios to rlib.

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75275:c277a357ccc4 Date: 2015-01-09 23:41 +0100 http://bitbucket.org/pypy/pypy/changeset/c277a357ccc4/ Log:A branch to move ll_termios to rlib. ___ pypy-commit mailing list pypy-commi

[pypy-commit] pypy kill_ll_termios: Close branch about to be merged

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75282:36c47b1ba467 Date: 2015-01-10 13:32 +0100 http://bitbucket.org/pypy/pypy/changeset/36c47b1ba467/ Log:Close branch about to be merged ___ pypy-commit mailing list pypy-commit@pyt

[pypy-commit] pypy kill_ll_termios: Finally remove ll_termios.py

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75281:289505ce5487 Date: 2015-01-10 12:33 +0100 http://bitbucket.org/pypy/pypy/changeset/289505ce5487/ Log:Finally remove ll_termios.py diff --git a/rpython/rtyper/module/test/test_ll_termios.py b/rpython/rlib/test/test_rtermi

[pypy-commit] pypy kill_ll_termios: Fix translation, and define all constants directly, without using the host Python.

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_termios Changeset: r75280:63d0ea0e1a2b Date: 2015-01-10 12:26 +0100 http://bitbucket.org/pypy/pypy/changeset/63d0ea0e1a2b/ Log:Fix translation, and define all constants directly, without using the host Python. diff --git a/pypy/module/term

[pypy-commit] pypy kill_ll_time: Create rtime.py, move implmentation of time.time()

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_time Changeset: r75285:06a7386c87a3 Date: 2015-01-10 16:03 +0100 http://bitbucket.org/pypy/pypy/changeset/06a7386c87a3/ Log:Create rtime.py, move implmentation of time.time() diff --git a/pypy/module/time/interp_time.py b/pypy/module/time/interp_t

[pypy-commit] pypy kill_ll_time: Move time.clock(), and fix sanbox tests.

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_time Changeset: r75286:5c699a5a1e58 Date: 2015-01-10 16:42 +0100 http://bitbucket.org/pypy/pypy/changeset/5c699a5a1e58/ Log:Move time.clock(), and fix sanbox tests. diff --git a/rpython/rlib/rtime.py b/rpython/rlib/rtime.py --- a/rpython/rlib/rtim

[pypy-commit] pypy kill_ll_time: Move time.sleep(), fix other tests

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_time Changeset: r75287:70a372733d5c Date: 2015-01-10 17:25 +0100 http://bitbucket.org/pypy/pypy/changeset/70a372733d5c/ Log:Move time.sleep(), fix other tests diff --git a/rpython/rlib/rtime.py b/rpython/rlib/rtime.py --- a/rpython/rlib/rtime.py +

[pypy-commit] pypy kill_ll_time: Finally kill ll_time.py, move tests to rlib/

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_time Changeset: r75288:7a213190810b Date: 2015-01-10 17:29 +0100 http://bitbucket.org/pypy/pypy/changeset/7a213190810b/ Log:Finally kill ll_time.py, move tests to rlib/ diff --git a/rpython/rtyper/module/test/test_ll_time.py b/rpython/rlib/test/t

[pypy-commit] pypy kill_ll_time: A branch to move ll_time into rlib

2015-01-10 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_time Changeset: r75284:049a0747bc77 Date: 2015-01-10 13:45 +0100 http://bitbucket.org/pypy/pypy/changeset/049a0747bc77/ Log:A branch to move ll_time into rlib ___ pypy-commit mailing list pypy-commit@pyt

[pypy-commit] pypy kill_ll_time: time.time is called as "self.timer()", wrap it in a static method.

2015-01-12 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: kill_ll_time Changeset: r75311:97fbbce870d7 Date: 2015-01-12 22:11 +0100 http://bitbucket.org/pypy/pypy/changeset/97fbbce870d7/ Log:time.time is called as "self.timer()", wrap it in a static method. diff --git a/rpython/jit/metainterp/jitprof.py b/rpytho

[pypy-commit] pypy stdlib-2.7.9: uudecode: when checking for trailing characters, don't bother checking the incomplete pending bits.

2015-01-20 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75459:aeaed06de33f Date: 2015-01-20 23:41 +0100 http://bitbucket.org/pypy/pypy/changeset/aeaed06de33f/ Log:uudecode: when checking for trailing characters, don't bother checking the incomplete pending bits. For compatibilit

[pypy-commit] pypy stdlib-2.7.9: SSL module: add "cadata" parameter to load_verify_locations().

2015-01-23 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75506:8e49368b697a Date: 2015-01-21 19:04 +0100 http://bitbucket.org/pypy/pypy/changeset/8e49368b697a/ Log:SSL module: add "cadata" parameter to load_verify_locations(). diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_s

[pypy-commit] pypy stdlib-2.7.9: SSL: Add support for npn_protocols

2015-01-23 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75507:75d21c757ba1 Date: 2014-12-16 18:40 +0100 http://bitbucket.org/pypy/pypy/changeset/75d21c757ba1/ Log:SSL: Add support for npn_protocols diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/

[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

[pypy-commit] pypy stdlib-2.7.9: Add password parameter to ctx.load_cert_chain()

2015-01-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75593:ee52b4559ba7 Date: 2015-01-31 00:08 +0100 http://bitbucket.org/pypy/pypy/changeset/ee52b4559ba7/ Log:Add password parameter to ctx.load_cert_chain() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.p

[pypy-commit] pypy stdlib-2.7.9: add SSLSocket.context property

2015-01-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75591:2a8d2a10cc88 Date: 2015-01-26 09:03 +0100 http://bitbucket.org/pypy/pypy/changeset/2a8d2a10cc88/ Log:add SSLSocket.context property diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/modu

[pypy-commit] pypy stdlib-2.7.9: Fix ssl.context setter

2015-01-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75592:1e72ec33c3c4 Date: 2015-01-26 22:45 +0100 http://bitbucket.org/pypy/pypy/changeset/1e72ec33c3c4/ Log:Fix ssl.context setter 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: A bad tls version now raises ValueError

2015-01-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75594:07341897da21 Date: 2015-01-31 00:13 +0100 http://bitbucket.org/pypy/pypy/changeset/07341897da21/ Log:A bad tls version now raises ValueError diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/

[pypy-commit] pypy stdlib-2.7.9: Implement SSLContext.get_ca_certs()

2015-01-30 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: stdlib-2.7.9 Changeset: r75595:d5649f3f7a3b Date: 2015-01-31 00:43 +0100 http://bitbucket.org/pypy/pypy/changeset/d5649f3f7a3b/ Log:Implement SSLContext.get_ca_certs() diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy

<    1   2   3   4   5   6   7   8   9   10   >