- 20 May, 2018 4 kayıt (commit)
-
-
Aaron Hall, MBA yazdı
Look for '__set__' or '__delete__'.
-
Mario Corchero yazdı
Function was added with the initial implementation 00efe7e7.
-
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.
-
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.
-
- 18 May, 2018 1 kayıt (commit)
-
-
Ivan Levkivskyi yazdı
-
- 16 May, 2018 6 kayıt (commit)
-
-
Steve Dower 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
-
Eric V. Smith yazdı
-
Christopher Beacham yazdı
-
Eric V. Smith yazdı
-
- 15 May, 2018 2 kayıt (commit)
-
-
Christian Heimes yazdı
The ssl module now contains OP_NO_RENEGOTIATION constant, available with OpenSSL 1.1.0h or 1.1.1. Note, OpenSSL 1.1.0h hasn't been released yet. Signed-off-by: Christian Heimes <christian@python.org>
-
Matthias Bussonnier yazdı
Also bump PendingDeprecationWarning to DeprecationWarning.
-
- 14 May, 2018 4 kayıt (commit)
-
-
Segev Finer yazdı
-
Ned Deily yazdı
-
Eric V. Smith yazdı
-
Michael Lazar yazdı
The urllib.robotparser's __str__ representation now includes wildcard entries and the "Crawl-delay" and "Request-rate" fields. Also removes extra newlines that were being appended to the end of the string.
-
- 09 May, 2018 2 kayıt (commit)
-
-
sblondon yazdı
-
Ivan Levkivskyi yazdı
This also fixes https://bugs.python.org/issue33420
-
- 06 May, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 05 May, 2018 1 kayıt (commit)
-
-
Andrés Delfino yazdı
bpo-33422: Fix quotation marks getting deleted when looking up byte/string literals on pydoc. (GH-6701) Also update the list of string prefixes.
-
- 04 May, 2018 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 02 May, 2018 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 01 May, 2018 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Michael Selik yazdı
Previously emitted cover files only when --missing option was used.
-
- 30 Nis, 2018 1 kayıt (commit)
-
-
Brett Cannon yazdı
bpo-33254: do not return an empty list when asking for the contents of a namespace package (GH-6467)
-
- 29 Nis, 2018 2 kayıt (commit)
-
-
sblondon yazdı
-
Serhiy Storchaka yazdı
-
- 25 Nis, 2018 2 kayıt (commit)
-
-
Cheryl Sabella yazdı
-
Serhiy Storchaka yazdı
Added tests to ensure that all defined opcodes are supported.
-
- 23 Nis, 2018 2 kayıt (commit)
-
-
Chris Bradbury yazdı
* bpo-33251: ConfigParser.items no longer returns items present in vars. Documentation for `ConfigParser.items()` states: 'Items present in vars no longer appear in the result.' This fix aligns behaviour to that specified in the documentation.
-
Antoine Pitrou yazdı
Starting with glibc 2.27.9000-xxx, sigaddset() can return EINVAL for some reserved signal numbers between 1 and NSIG. The `range(1, NSIG)` idiom is commonly used to select all signals for blocking with `pthread_sigmask`. So we ignore the sigaddset() return value until we expose sigfillset() to provide a better idiom.
-
- 22 Nis, 2018 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 20 Nis, 2018 1 kayıt (commit)
-
-
Paul Moore yazdı
Upgrade ensurepip to bundle pip 10.0.1
-
- 18 Nis, 2018 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Converting with line_info=False and col_info=True crashed before.
-
- 17 Nis, 2018 3 kayıt (commit)
-
-
Aaron Ang yazdı
-
Wolfgang Maier yazdı
-
Łukasz Langa yazdı
* Now uses pickle protocol 4 * Doesn't wrap the grammar's `__dict__` in ordered dictionaries anymore as dictionaries in Python 3.6+ are ordered by default This still produces deterministic pickles (that hash the same with MD5). Tested with different PYTHONHASHSEED values.
-
- 16 Nis, 2018 1 kayıt (commit)
-
-
Łukasz Langa yazdı
-
- 15 Nis, 2018 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Adds some working and markup fixes that I missed in the initial commit for this issue. (Follow-up to GH-6419)
-