- 27 Tem, 2015 7 kayıt (commit)
-
-
Steve Dower yazdı
-
Victor Stinner yazdı
accept() returns INVALID_SOCKET on error, it's not necessary a negative number.
-
Berker Peksag yazdı
possible completions for an empty word. Initial patch by Martin Sekera.
-
Berker Peksag yazdı
possible completions for an empty word. Initial patch by Martin Sekera.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Patch by Louis Dassy.
-
Stefan Krah yazdı
-
- 26 Tem, 2015 6 kayıt (commit)
-
-
Robert Collins yazdı
-
Robert Collins yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Serhiy Storchaka yazdı
inappropriate type.
-
Serhiy Storchaka yazdı
inappropriate type.
-
- 25 Tem, 2015 13 kayıt (commit)
-
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Berker Peksag yazdı
Patch by Eduardo Seabra and Thomas Kluyver.
-
Berker Peksag yazdı
Patch by Eduardo Seabra and Thomas Kluyver.
-
Berker Peksag yazdı
These functions accept same arguments as subprocess.Popen(). Patch by Martin Panter.
-
Berker Peksag yazdı
Initial patch by Christie.
-
Berker Peksag yazdı
imp.reload() was deprecated in Python 3.4 and changed to call importlib.reload(). Patch by Petr Viktorin.
-
Berker Peksag yazdı
imp.reload() was deprecated in Python 3.4 and changed to call importlib.reload(). Patch by Petr Viktorin.
-
Serhiy Storchaka yazdı
constructing lru_cache (C implementation).
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Fix ResourceWarning warnings in test_streams * Return True from StreamReader.eof_received() to fix http://bugs.python.org/issue24539 (but still needs a unittest). Add StreamReader.__repr__() for easy debugging. * remove unused imports * Issue #234: Drop JoinableQueue on Python 3.5+
-
Victor Stinner yazdı
Move compatibility helpers for the different Python versions to a new asyncio.compat module.
-
- 24 Tem, 2015 6 kayıt (commit)
-
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Berker Peksag yazdı
If exc_traceback is None we shouldn't print a traceback header like described in the documentation.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Meador Inge yazdı
The fix for Issue #21217 introduced a regression that caused `inspect.getsource` to return incorrect results on nested functions. The root cause of the regression was due to switching the implementation to analyze the underlying bytecode instead of the source code. This commit switches things back to analyzing the source code in a more complete way. The original bug and the regression are both fixed by the new source code analysis.
-
- 23 Tem, 2015 8 kayıt (commit)
-
-
Robert Collins yazdı
-
Robert Collins yazdı
-
Robert Collins yazdı
-
Robert Collins yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
This commit simplifies async/await tokenization in tokenizer.c, tokenize.py & lib2to3/tokenize.py. Previous solution was to keep a stack of async-def & def blocks, whereas the new approach is just to remember position of the outermost async-def block. This change won't bring any parsing performance improvements, but it makes the code much easier to read and validate.
-
Yury Selivanov yazdı
-