- 22 May, 2018 6 kayıt (commit)
-
-
Elvis Pranskevichus yazdı
-
Terry Jan Reedy yazdı
-
Serhiy Storchaka yazdı
-
Masayuki Yamamoto yazdı
Thread Specific Storage (TSS) API is a public C API (new in 3.7).
-
Serhiy Storchaka yazdı
-
Andrés Delfino yazdı
-
- 21 May, 2018 4 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
INADA Naoki yazdı
-
Andrew Svetlov yazdı
-
Vlad Starostin yazdı
* bpo-33263 Fix FD leak in _SelectorSocketTransport. (GH-6450) Under particular circumstances _SelectorSocketTransport can try to add a reader even the transport is already being closed. This can lead to FD leak and invalid stated of the following connections. Fixed the SelectorSocketTransport to add the reader only if the trasport is still active.
-
- 20 May, 2018 15 kayıt (commit)
-
-
Aaron Hall, MBA yazdı
Look for '__set__' or '__delete__'.
-
Serhiy Storchaka yazdı
Also remove bullet asterisks from IDLE entries.
-
Terry Jan Reedy yazdı
-
Christian Heimes yazdı
Fix typo from commit 6370f345Signed-off-by: Christian Heimes <christian@python.org> <!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. # Pull Request title It should be in the following format: ``` bpo-NNNN: Summary of the changes made ``` Where: bpo-NNNN refers to the issue number in the https://bugs.python.org. Most PRs will require an issue number. Trivial changes, like fixing a typo, do not need an issue. # Backport Pull Request title If this is a backport PR (PR made against branches other than `master`), please ensure that the PR title is in the following format: ``` [X.Y] <title from the original PR> (GH-NNNN) ``` Where: [X.Y] is the branch name, e.g. [3.6]. GH-NNNN refers to the PR number from `master`. --> <!-- issue-number: bpo-32262 --> https://bugs.python.org/issue32262 <!-- /issue-number -->
-
Mario Corchero yazdı
Function was added with the initial implementation 00efe7e7.
-
Andrés Delfino yazdı
-
CtrlZvi yazdı
uuid._ipconfig_getnode did not validate the maximum length of the value, so long as the value had the same type of formatting as a MAC address. This let it select DUIDs as MAC addresses. It now requires an exact length match.
-
Lisa Roach yazdı
-
Eitan Adler yazdı
CPython 3.5 is old now, and we don't bump this version often, so lets avoid using specific versions.
-
Serhiy Storchaka yazdı
Fix the following bugs in the C implementation: * get_future_loop() silenced all exceptions raised when look up the get_loop attribute, not just an AttributeError. * enter_task() silenced all exceptions raised when look up the current task, not just a KeyError. * repr() was called for a borrowed link in enter_task() and task_step_impl(). * str() was used instead of repr() in formatting one error message (in Python implementation too). * There where few reference leaks in error cases.
-
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 8 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ı
-