- 10 Sep, 2018 1 commit
-
-
Miss Islington (bot) authored
(cherry picked from commit 4e519377) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
- 07 Sep, 2018 1 commit
-
-
Victor Stinner authored
When calling tp_descr_get(self, obj, type), make sure that we own a strong reference to "self". (cherry picked from commit 8f735485)
-
- 05 Sep, 2018 1 commit
-
-
Miss Islington (bot) authored
(cherry picked from commit 7d81e8f5) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
-
- 04 Sep, 2018 1 commit
-
-
Victor Stinner authored
distutils.spawn.find_executable() now falls back on os.defpath if the PATH environment variable is not set. (cherry picked from commit 39487196)
-
- 03 Sep, 2018 1 commit
-
-
Mickaël Schoentgen authored
The change to Tools/scripts/diff.py effectively backports part of a2637729. The test code changed in Doc/library/difflib.rst is not present in current 3.x.
-
- 02 Sep, 2018 1 commit
-
-
Zachary Ware authored
... by removing a superfluous "either". Reported by Никита Люшненко on docs@ (cherry picked from commit 98b976a2)
-
- 31 Aug, 2018 1 commit
-
-
Miss Islington (bot) authored
Sometimes some versions of the shared libraries that are part of the traceback are compiled in optimised mode and the Program Counter (PC) is not present, not allowing gdb to walk the frames back. When this happens, the Python bindings of gdb raise an exception, making the test impossible to succeed. (cherry picked from commit f2ef51f8) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
-
- 30 Aug, 2018 1 commit
-
-
Benjamin Peterson authored
closes bpo-34540: Convert shutil._call_external_zip to use subprocess rather than distutils.spawn. (GH-8985)
-
- 26 Aug, 2018 1 commit
-
-
Tal Einat authored
(cherry picked from commit 91cb298f) Co-authored-by: Vladimir Matveev <v2matveev@outlook.com>
-
- 25 Aug, 2018 1 commit
-
-
Zackery Spytz authored
-
- 24 Aug, 2018 3 commits
-
-
Benjamin Peterson authored
(cherry picked from commit 704e2d37) Co-authored-by: Christian Heimes <christian@cheimes.de>
-
Miss Islington (bot) authored
Reported by Svace static analyzer. (cherry picked from commit 2b824b25) Co-authored-by: Alexey Izbyshev <izbyshev@ispras.ru>
-
Miss Islington (bot) authored
Reported by Svace static analyzer. (cherry picked from commit f6247aac) Co-authored-by: Alexey Izbyshev <izbyshev@ispras.ru>
-
- 23 Aug, 2018 1 commit
-
-
Miss Islington (bot) authored
(cherry picked from commit c33bb5d4) Co-authored-by: Ville Skyttä <ville.skytta@iki.fi>
-
- 22 Aug, 2018 2 commits
-
-
Alexey Izbyshev authored
[2.7] bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (GH-8852) (GH-8858) Reported by Svace static analyzer. (cherry picked from commit 28853a24) Co-authored-by: Alexey Izbyshev <izbyshev@ispras.ru>
-
Zackery Spytz authored
(cherry picked from commit 3e26e42c) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
- 20 Aug, 2018 1 commit
-
-
Xiang Zhang authored
[2.7] bpo-30411: Use --git-dir instead of -C to make git work under version below 1.8.5. (GH-8744) (GH-8838) (cherry picked from commit 4c855577)
-
- 17 Aug, 2018 1 commit
-
-
Sergey Fedoseev authored
-
- 16 Aug, 2018 1 commit
-
-
Christian Heimes authored
Read from data socket to avoid "[SSL] shutdown while in init" exception during shutdown of the dummy server. Signed-off-by: Christian Heimes <christian@python.org> <!-- issue-number: [bpo-34391](https://www.bugs.python.org/issue34391) --> https://bugs.python.org/issue34391 <!-- /issue-number -->. (cherry picked from commit 1590c393) Co-authored-by: Christian Heimes <christian@python.org>
-
- 15 Aug, 2018 1 commit
-
-
Miss Islington (bot) authored
Avoid undefined pointer arithmetic with NULL. (cherry picked from commit 7c4ab2af) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
- 14 Aug, 2018 1 commit
-
-
Christian Heimes authored
Downstream vendors have started to deprecate weak keys. Update all RSA keys and DH params to use at least 2048 bits. Finite field DH param file use RFC 7919 values, generated with certtool --get-dh-params --sec-param=high Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit 88bfd0bc) Co-authored-by: Christian Heimes <christian@python.org>
-
- 06 Aug, 2018 3 commits
-
-
Serhiy Storchaka authored
(cherry picked from commit 8f7bb100)
-
Zackery Spytz authored
This was backported by mistake in ef19fd20.
-
Terry Jan Reedy authored
The change in the mini language floating point and decimal table is consistent with 'Exponential notation' and clarifies that we are referring to the output notation, not an object type. (cherry picked from commit 28c7f8c8)
-
- 03 Aug, 2018 2 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 2ebd3813) Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
-
Terry Jan Reedy authored
Some MacOS-tk combinations need .update_idletasks(). The call is both unneeded and innocuous on Linux and Windows. Patch by Kevin Walzer. (cherry picked from commit 9beaef62) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-
- 02 Aug, 2018 4 commits
-
-
Victor Stinner authored
* Fix compilation warning in _ctypes module on Window (cherry picked from commit 20f11fe4) * Fix compilation warnings on Windows 64-bit (cherry picked from commit 725e4212) * Fix compiler warning in unicodeobject.c Explicitly case to Py_UNICODE to fix the warning: Objects\unicodeobject.c(4225): warning C4244: '=' : conversion from 'long' to 'Py_UNICODE', possible loss of data The downcast cannot overflow since we check that value <= 0x10ffff.
-
Victor Stinner authored
Use a local scope for the 'i' variable.
-
Victor Stinner authored
Fixed bpo-29565: Corrected ctypes passing of large structs by value. Added code and test to check that when a structure passed by value is large enough to need to be passed by reference, a copy of the original structure is passed. The callee updates the passed-in value, and the test verifies that the caller's copy is unchanged. A similar change was also added to the test added for bpo-20160 (that test was passing, but the changes should guard against regressions). (cherry picked from commit a86339b8)
-
- 31 Jul, 2018 2 commits
-
-
Serhiy Storchaka authored
-
Miss Islington (bot) authored
(cherry picked from commit c48e26dc) Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
-
- 30 Jul, 2018 1 commit
-
-
Andrés Delfino authored
(cherry picked from commit 6921ef7b) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
- 26 Jul, 2018 1 commit
-
-
Xtreak authored
bpo-34229: Check start and stop of slice object to be long when they are not int in PySlice_GetIndices (GH-8480)
-
- 25 Jul, 2018 1 commit
-
-
Miss Islington (bot) authored
(cherry picked from commit c0f0a766) Co-authored-by: Aaron Ang <aaronang@users.noreply.github.com>
-
- 24 Jul, 2018 1 commit
-
-
Miss Islington (bot) authored
The script will exit with the number 0 (zero), instead of the letter O. (cherry picked from commit 95d34c2a) Co-authored-by: Mariatta <Mariatta@users.noreply.github.com>
-
- 23 Jul, 2018 3 commits
-
-
Tal Einat authored
(cherry picked from commit bde782bb) Co-authored-by: Matthias Bussonnier <bussonniermatthias@gmail.com>
-
Serhiy Storchaka authored
-
Miss Islington (bot) authored
imaplib now allows MOVE command in IMAP4.uid() (RFC 6851: IMAP MOVE Extension) and potentially as a name of supported method of IMAP4 object. (cherry picked from commit caa331d4) Co-authored-by: Matěj Cepl <mcepl@cepl.eu>
-
- 22 Jul, 2018 1 commit
-
-
Serhiy Storchaka authored
(cherry picked from commit e271ca78) (cherry picked from commit c75c1e0e)
-