- 30 Nis, 2018 8 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)
-
Matthias Klose yazdı
-
Matthias Klose yazdı
-
Matthias Klose yazdı
* issue33377: add triplets for mips-r6 and riscv * issue33377: add triplets for mips-r6 and riscv (NEWS entry)
-
Andrés Delfino yazdı
-
Serhiy Storchaka yazdı
long_long() was used with three function types: PyCFunction, getter and unaryfunction.
-
Victor Stinner yazdı
Use the _PyTime_t type and round away from zero (ROUND_UP, _PyTime_ROUND_TIMEOUT) the sleep duration, when converting a Python object to seconds and then to milliseconds. Raise an OverflowError in case of overflow. Previously the (int)double conversion rounded towards zero (ROUND_DOWN).
-
Terry Jan Reedy yazdı
In text and entry boxes, this affects selection by double-click, movement left/right by control-left/right, and deletion left/right by control-BACKSPACE/DEL.
-
- 29 Nis, 2018 6 kayıt (commit)
-
-
Serhiy Storchaka yazdı
They where silenced before.
-
Siddhesh Poyarekar yazdı
METH_NOARGS functions need only a single argument but they are cast into a PyCFunction, which takes two arguments. This triggers an invalid function cast warning in gcc8 due to the argument mismatch. Fix this by adding a dummy unused argument.
-
Bo Bayles yazdı
-
sblondon yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 28 Nis, 2018 1 kayıt (commit)
-
-
Dong-hee Na yazdı
-
- 27 Nis, 2018 4 kayıt (commit)
-
-
Tom Christie yazdı
The wording here seems wrong, as per https://bugs.python.org/msg315792
-
Zsolt Dollenstein yazdı
-
Victor Stinner yazdı
Cast pointer difference from ssize_t to int: a frame is very unlikely larger than 2 GB.
-
Pablo Galindo yazdı
Fix test_embed.test_pre_initialization_sys_options() when building with --enable-shared
-
- 26 Nis, 2018 1 kayıt (commit)
-
-
Brian Curtin yazdı
Previously, the predicate parameter was mentioned, but what it was to be called with was not documented and required either trial-and-error or looking into the source to find that it is called with the `value`, or second item, of the full members list. This change addresses what the predicate will receive, as well as does some light formatting to make this clear.
-
- 25 Nis, 2018 7 kayıt (commit)
-
-
Cheryl Sabella yazdı
-
Serhiy Storchaka yazdı
Added tests to ensure that all defined opcodes are supported.
-
Serhiy Storchaka yazdı
-
Andrés Delfino yazdı
-
Neeraj Badlani yazdı
Patch by Neeraj Badlani.
-
Pablo Galindo yazdı
-
Pablo Galindo yazdı
External importers were being added in both phases of the import system initialisation. They're only supposed to be added in the second phase, after the import machinery has been appropriately configured.
-
- 23 Nis, 2018 5 kayıt (commit)
-
-
Łukasz Langa yazdı
-
Chris Bradbury yazdı
-
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.
-
Łukasz Langa yazdı
This change contains minor things that make diffing between Lib/tokenize.py and Lib/lib2to3/pgen2/tokenize.py cleaner.
-
- 22 Nis, 2018 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 21 Nis, 2018 1 kayıt (commit)
-
-
Andrés Delfino yazdı
Also update PIL doc references to Pillow.
-
- 20 Nis, 2018 6 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Ville Skyttä yazdı
-
Paul Moore yazdı
Upgrade ensurepip to bundle pip 10.0.1
-
Gregory P. Smith yazdı
-
xdegaye yazdı
Setup modules are no longer built with -DPy_BUILD_CORE by default, as using that flag may now require including additional internal-only header files. Instead, only the modules that specifically need it use that setting.
-