[pypy-commit] pypy nogil-unsafe-2: Fixes. Now the branch seems to "work" again

2017-08-15 Thread arigo
Author: Armin Rigo Branch: nogil-unsafe-2 Changeset: r92157:cd60a593d1b4 Date: 2017-08-16 09:44 +0400 http://bitbucket.org/pypy/pypy/changeset/cd60a593d1b4/ Log:Fixes. Now the branch seems to "work" again diff --git a/rpython/rlib/rgil.py b/rpython/rlib/rgil.py --- a/rpython/rlib/rgil.py +++

[pypy-commit] pypy nogil-unsafe-2: With nogil, it doesn't make sense to not have threads

2017-08-15 Thread arigo
Author: Armin Rigo Branch: nogil-unsafe-2 Changeset: r92156:55fb6aff1863 Date: 2017-08-15 20:36 +0200 http://bitbucket.org/pypy/pypy/changeset/55fb6aff1863/ Log:With nogil, it doesn't make sense to not have threads (and it fails translation right now, FIXME) diff --git a/pypy/config/

[pypy-commit] pypy nogil-unsafe-2: Make the current stack limits a thread-local, too

2017-08-15 Thread arigo
Author: Armin Rigo Branch: nogil-unsafe-2 Changeset: r92158:13c93572cf88 Date: 2017-08-16 10:03 +0400 http://bitbucket.org/pypy/pypy/changeset/13c93572cf88/ Log:Make the current stack limits a thread-local, too diff --git a/rpython/translator/c/src/stack.c b/rpython/translator/c/src/stack.c

[pypy-commit] pypy py3.5: Only expose OSError.winerror on Win32.

2017-08-15 Thread exarkun
Author: Jean-Paul Calderone Branch: py3.5 Changeset: r92155:cce9378e5bb7 Date: 2017-08-15 13:34 -0400 http://bitbucket.org/pypy/pypy/changeset/cce9378e5bb7/ Log:Only expose OSError.winerror on Win32. diff --git a/pypy/module/exceptions/interp_exceptions.py b/pypy/module/exceptions/interp_ex

[pypy-commit] pypy py3.5: Allow readline text insertion without preparation.

2017-08-15 Thread exarkun
Author: Jean-Paul Calderone Branch: py3.5 Changeset: r92154:9f2963dca939 Date: 2017-08-15 12:28 -0400 http://bitbucket.org/pypy/pypy/changeset/9f2963dca939/ Log:Allow readline text insertion without preparation. diff --git a/lib_pypy/pyrepl/reader.py b/lib_pypy/pyrepl/reader.py --- a/lib_pyp