Author: Armin Rigo <ar...@tunes.org> Branch: extradoc Changeset: r5758:8bbdf2ea8e81 Date: 2016-12-05 08:52 +0100 http://bitbucket.org/pypy/extradoc/changeset/8bbdf2ea8e81/
Log: PEP 475 done diff --git a/planning/py3.5/cpython-crashers.rst b/planning/py3.5/cpython-crashers.rst --- a/planning/py3.5/cpython-crashers.rst +++ b/planning/py3.5/cpython-crashers.rst @@ -234,3 +234,8 @@ * if you write ``from .a import b`` inside the Python prompt, or in a module not in any package, then you get a SystemError(!) with an error message that is unlikely to help newcomers. + +* pep 475: unclear why 'os.fchmod(fd)' retries automatically when + it gets EINTR but the otherwise-equivalent 'os.chmod(fd)' does not. + (The documentation says they are fully equivalent, so someone is + wrong.) diff --git a/planning/py3.5/milestone-1-progress.rst b/planning/py3.5/milestone-1-progress.rst --- a/planning/py3.5/milestone-1-progress.rst +++ b/planning/py3.5/milestone-1-progress.rst @@ -37,7 +37,7 @@ * "except pyopcode.Return:" in pyframe can't be there, because that's outside the JIT and it gives terrible performance -* PEP 475: Retry system calls failing with EINTR +* PEP 475: Retry system calls failing with EINTR (DONE) * ast compiler: clean up POP_EXCEPT: either remove them, or use it to clean up the "finally: name = None; del name" nonsense at the end of any except block _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit