- 30 Apr, 2018 9 commits
-
-
Ekin Dursun authored
-
Brett Cannon authored
bpo-33254: do not return an empty list when asking for the contents of a namespace package (GH-6467)
-
Matthias Klose authored
-
Matthias Klose authored
-
Matthias Klose authored
* issue33377: add triplets for mips-r6 and riscv * issue33377: add triplets for mips-r6 and riscv (NEWS entry)
-
Andrés Delfino authored
-
Serhiy Storchaka authored
long_long() was used with three function types: PyCFunction, getter and unaryfunction.
-
Victor Stinner authored
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 authored
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 Apr, 2018 6 commits
-
-
Serhiy Storchaka authored
They where silenced before.
-
Siddhesh Poyarekar authored
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 authored
-
sblondon authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- 28 Apr, 2018 1 commit
-
-
Dong-hee Na authored
-
- 27 Apr, 2018 4 commits
-
-
Tom Christie authored
The wording here seems wrong, as per https://bugs.python.org/msg315792
-
Zsolt Dollenstein authored
-
Victor Stinner authored
Cast pointer difference from ssize_t to int: a frame is very unlikely larger than 2 GB.
-
Pablo Galindo authored
Fix test_embed.test_pre_initialization_sys_options() when building with --enable-shared
-
- 26 Apr, 2018 1 commit
-
-
Brian Curtin authored
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 Apr, 2018 7 commits
-
-
Cheryl Sabella authored
-
Serhiy Storchaka authored
Added tests to ensure that all defined opcodes are supported.
-
Serhiy Storchaka authored
-
Andrés Delfino authored
-
Neeraj Badlani authored
Patch by Neeraj Badlani.
-
Pablo Galindo authored
-
Pablo Galindo authored
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 Apr, 2018 5 commits
-
-
Łukasz Langa authored
-
Chris Bradbury authored
-
Chris Bradbury authored
* 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 authored
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 authored
This change contains minor things that make diffing between Lib/tokenize.py and Lib/lib2to3/pgen2/tokenize.py cleaner.
-
- 22 Apr, 2018 1 commit
-
-
Berker Peksag authored
-
- 21 Apr, 2018 1 commit
-
-
Andrés Delfino authored
Also update PIL doc references to Pillow.
-
- 20 Apr, 2018 5 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
-
Ville Skyttä authored
-
Paul Moore authored
Upgrade ensurepip to bundle pip 10.0.1
-
Gregory P. Smith authored
-