- 14 Nis, 2018 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 13 Nis, 2018 2 kayıt (commit)
-
-
jdemeyer yazdı
`MethodType` has the exact semantics that `ExitStack` needs, so we can avoid creating a Python level closure.
-
WeizhongTu yazdı
-
- 11 Nis, 2018 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
- 10 Nis, 2018 2 kayıt (commit)
-
-
Mark Nemec yazdı
Executors in concurrent.futures accepted tasks after executor was shutdown by interpreter exit. Tasks were left in PENDING state forever. This fix changes submit to instead raise a RuntimeError.
-
Devon R yazdı
-
- 09 Nis, 2018 6 kayıt (commit)
-
-
Aaron Ang yazdı
-
Serhiy Storchaka yazdı
Based on patch by Oleg Krasnikov.
-
Serhiy Storchaka yazdı
This code doesn't have effect on the final result, but causes GCC 8 warnings and can have an undefined behavior.
-
Antoine Pitrou yazdı
Large shared arrays allocated using multiprocessing would remain allocated until the process ends.
-
Serhiy Storchaka yazdı
The protocol parameter can be any protocol supported by the pickle module.
-
Wolfgang Maier yazdı
When bpo-12015 got resolved by increasing the length of the random string generated by _RandomNameSequence from six to eight characters, the docstring of the class was not adjusted accordingly.
-
- 08 Nis, 2018 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Raymond Hettinger yazdı
-
- 07 Nis, 2018 4 kayıt (commit)
-
-
Alex Gaynor yazdı
* bpo-29613: Added support for SameSite cookies Implemented as per draft https://tools.ietf.org/html/draft-west-first-party-cookies-07 * Documented SameSite And suggestions by members. * Missing space :( * Updated News and contributors * Added version changed details. * Fix in documentation * fix in documentation * Clubbed test cases for same attribute into single. * Updates * Style nits + expand tests * review feedback
-
Antoine Pitrou yazdı
* bpo-33201: Modernize "Extension types" doc * Split tutorial and other topics * Some small fixes * Address some review comments * Rename noddy* to custom* and shoddy to sublist * Fix markup
-
Ned Deily yazdı
-
Jay Crotts yazdı
-
- 06 Nis, 2018 4 kayıt (commit)
-
-
Brett Cannon yazdı
An entry of None in sys.path_importer_cache represents a negative/missing finder for a path, so clearing it out makes sense.
-
Marcel Plch yazdı
-
Alex Gaynor yazdı
-
INADA Naoki yazdı
-
- 05 Nis, 2018 6 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Skip Montanaro yazdı
Original patch by Alexander Belopolsky. Patch by Skip Montanaro.
-
Wolfgang Maier yazdı
-
Eric V. Smith yazdı
* Add a test for frozen with unhashable field value. * Improve a comment.
-
Brett Cannon yazdı
-
Ivan Levkivskyi yazdı
This removes a hack and replaces it with a proper mapping {'list': 'List', 'dict': 'Dict', ...}.
-
- 04 Nis, 2018 5 kayıt (commit)
-
-
Ivan Levkivskyi yazdı
-
Serhiy Storchaka yazdı
Different paths are executed for normal exit and for leaving the 'async with' block with 'break', 'continue' or 'return'.
-
Łukasz Langa yazdı
This makes performance better and produces shorter pickles. This change is backwards compatible up to the oldest currently supported version of Python (3.4).
-
INADA Naoki yazdı
Py_UNICODE is deprecated since Python 3.3. But the deprecation is missed in the c-api/arg document.
-
hui shang yazdı
-
- 03 Nis, 2018 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
INADA Naoki yazdı
-
Andrés Delfino yazdı
-
INADA Naoki yazdı
-
- 02 Nis, 2018 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
when __aenter__() or __aexit__() return non-awaitable object.
-
Terry Jan Reedy yazdı
Followup to primary PR for the issue, GH-6344.
-