- 20 May, 2018 5 kayıt (commit)
-
-
CtrlZvi yazdı
The proactor event loop has a race condition when reading with pausing/resuming. `resume_reading()` unconditionally schedules the read function to read from the current future. If `resume_reading()` was called before the previously scheduled done callback fires, this results in two attempts to get the data from the most recent read and an assertion failure. This commit tracks whether or not `resume_reading` needs to reschedule the callback to restart the loop, preventing a second attempt to read the data.
-
Serhiy Storchaka yazdı
A DeprecationWarning was emitted in Python 3.6-3.7.
-
Serhiy Storchaka yazdı
-
Elvis Pranskevichus yazdı
-
Terry Jan Reedy yazdı
-
- 19 May, 2018 3 kayıt (commit)
-
-
Carl Meyer yazdı
-
Cheryl Sabella yazdı
-
Daniel Chimeno yazdı
-
- 18 May, 2018 4 kayıt (commit)
-
-
Ivan Levkivskyi yazdı
-
Skip Montanaro yazdı
-
Serhiy Storchaka yazdı
-
Terry Jan Reedy yazdı
-
- 17 May, 2018 15 kayıt (commit)
-
-
Miro Hrončok yazdı
-
Carl Meyer yazdı
-
Miro Hrončok yazdı
-
Yury Selivanov yazdı
-
Steve Dower yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Gregory P. Smith yazdı
-
Eric Snow yazdı
This will make it easier to clean up channels (e.g. when used in tests).
-
Thomas Jones yazdı
Patch by Thomas Jones.
-
Matthias Bussonnier yazdı
`obj.async` is now a syntax error, so the warning/shim is quasi-unnecessary.
-
Andrés Delfino yazdı
-
Zvezdan Petkovic yazdı
The editline emulation needs to be initialized *after* the name is defined. This fixes the long open issue.
-
Serhiy Storchaka yazdı
-
INADA Naoki yazdı
Only gcmodule.c uses _PyGC_REFS* macros now. This makes easy to read GC code.
-
- 16 May, 2018 13 kayıt (commit)
-
-
Steve Dower yazdı
-
Barry Warsaw yazdı
-
Eric Snow yazdı
Add more tests for subinterpreters. This patch also fixes a few small defects in the channel implementation.
-
Alex Gaynor yazdı
-
Nina Zakharenko yazdı
-
Petr Viktorin yazdı
* test_ssl: Remove skip_if_broken_ubuntu_ssl We no longer support OpenSSL 0.9.8.15.15. * bpo-28167: Remove platform.linux_distribution
-
Gregory P. Smith yazdı
* bpo-24318: Rewrite the README PGO section. Merged from a phone on an airplane. :)
-
Eric V. Smith yazdı
-
Christopher Beacham yazdı
-
Eric V. Smith yazdı
-
Eric V. Smith yazdı
This condition as already tested before this code is called.
-
Eric V. Smith yazdı
To be more consistent with other code (and so people stop hassling me!), reflow the dataclasses comments to not use a single space indentation when continuing a paragraph of text.
-
Eric V. Smith yazdı
This is an initial version that likely requires much polishing. I'm adding it lay out the structure and so we have something to start working from.
-