- 15 Jan, 2019 1 commit
-
-
Serhiy Storchaka authored
-
- 12 Jan, 2019 3 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 1cffd0ee) Co-authored-by: Alexey Izbyshev <izbyshev@ispras.ru>
-
Serhiy Storchaka authored
Format character "%s" in PyString_FromFormat() no longer read memory past the limit if precision is specified. (cherry picked from commit d586ccb0)
-
Serhiy Storchaka authored
-
- 10 Jan, 2019 1 commit
-
-
Senthil Kumaran authored
-
- 09 Jan, 2019 2 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 91c6158d) Co-authored-by: Andre Delfino <adelfino@gmail.com>
-
Sanyam Khurana authored
* bpo-24746: Avoid stripping trailing whitespace in doctest fancy diff * [2.7] bpo-24746: Avoid stripping trailing whitespace in doctest fancy diff (GH-10639). (cherry picked from commit cbb16459) Co-authored-by: Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com>
-
- 02 Jan, 2019 2 commits
-
-
Benjamin Peterson authored
Remove README.rst inadvertandly "backported" from 3.x in 5a89c715. (GH-11409)
-
Benjamin Peterson authored
(cherry picked from commit 9a69ae8a)
-
- 27 Dec, 2018 2 commits
-
-
Ned Deily authored
-
- 22 Dec, 2018 1 commit
-
-
Matt McCormick authored
This addresses C extension build errors related to an undefined _hypot symbol when building with the Microsoft Visual C++ Compiler for Python 2.7 [1] or MinGWPy [2]. It also addresses errors when building a C++ extension with MinGWPy and C++11 from cmath, 'error "::hypot' has not been declared' [1] https://www.microsoft.com/en-us/download/details.aspx?id=44266 [2] https://mingwpy.github.io/
-
- 20 Dec, 2018 3 commits
-
-
Myles Borins authored
(cherry picked from 0854b92c)
-
Zackery Spytz authored
(cherry picked from commit 842acaab)
-
Miss Islington (bot) authored
"dll" would leak if an error occurred in _validate_paramflags() or GenericPyCData_new(). (cherry picked from commit d77d97c9) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
- 19 Dec, 2018 2 commits
-
-
Serhiy Storchaka authored
In _localemodule.c and selectmodule.c, remove dead code that would cause double decrefs if run. In addition, replace PyList_SetItem() with PyList_SET_ITEM() in cases where a new list is populated and there is no possibility of an error. In addition, check if the list changed size in the loop in array_array_fromlist(). (cherry picked from commit 99d56b53) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
Zackery Spytz authored
-
- 18 Dec, 2018 2 commits
-
-
Miss Islington (bot) authored
Use "ll" instead of the nonstandard "q". (cherry picked from commit 062cbb67) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
Victor Stinner authored
check_environ() of distutils.utils now catchs KeyError on calling pwd.getpwuid(): don't create the HOME environment variable in this case. (cherry picked from commit 17d0c059)
-
- 14 Dec, 2018 1 commit
-
-
Victor Stinner authored
bpo-34279, bpo-35412: support.run_unittest() no longer raises TestDidNotRun if a test result contains skipped tests. The exception is now only raised if no test have been run and no test have been skipped. (cherry picked from commit 3a8f4fef)
-
- 12 Dec, 2018 1 commit
-
-
Victor Stinner authored
* bpo-16039: CVE-2013-1752: Change use of readline() in imaplib.IMAP4_SSL to limit line length. Remove IMAP4_SSL.readline() and IMAP4_SSL.read() to inherit safe IMAP4 implementation. * bpo-20118: reenable test_linetoolong() of test_imaplib on ThreadedNetworkedTests and ThreadedNetworkedTestsSSL. The test now sets the _MAXLINE limit to 10 characters.
-
- 11 Dec, 2018 5 commits
-
-
Victor Stinner authored
(cherry picked from commit cb342182)
-
Ned Deily authored
-
Miss Islington (bot) authored
(cherry picked from commit 7cf3d8e2) Co-authored-by: Ned Deily <nad@python.org>
-
Miss Islington (bot) authored
https://bugs.python.org/issue35401 (cherry picked from commit 419b5ffc2ca46d7adf0be6216ca3a6e40028e50f) Co-authored-by: Ned Deily <nad@python.org>
-
Steve Dower authored
-
- 10 Dec, 2018 4 commits
-
-
Victor Stinner authored
Include <pyconfig.h> ealier in Modules/expat/xmlparse.c to define properly _POSIX_C_SOURCE and _XOPEN_SOURCE.
-
Victor Stinner authored
Use GCC __attribute__((unused)) to mark the debug variable 'filename' as unused in Python/ceval.c.
-
Miss Islington (bot) authored
Include <pyconfig.h> ealier in Modules/expat/xmltok.c to define properly _POSIX_C_SOURCE. Python defines _POSIX_C_SOURCE as 200809L, whereas <features.h> (included indirectly by <string.h>) defines _POSIX_C_SOURCE as 199506L. (cherry picked from commit cf247359) Co-authored-by: Victor Stinner <vstinner@redhat.com>
-
Victor Stinner authored
Fix xml.dom.minidom cloneNode() on a document with an entity: pass the correct arguments to the user data handler of an entity (fix an old copy/paste mistake). Bug spotted and fix proposed by Charalampos Stratakis, initial reproducer written by Petr Viktorin. Co-Authored-By: Charalampos Stratakis <cstratak@redhat.com> Co-Authored-By: Petr Viktorin <encukou@gmail.com> (cherry picked from commit 8e041868)
-
- 07 Dec, 2018 1 commit
-
-
Serhiy Storchaka authored
(cherry picked from commit 42b1d612) (cherry picked from commit 7a2cf1e7d3bf300e98c702589d405734f4a8fcf8)
-
- 06 Dec, 2018 5 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit c9566b8c) Co-authored-by: Andre Delfino <adelfino@gmail.com>
-
Victor Stinner authored
Define _CRT_SECURE_NO_WARNINGS in the Visual Studio pythoncore project to make quiet security warnings when building zlib C files (Modules\zlib\ subdirectory).
-
native-api authored
-
Andre Delfino authored
(cherry picked from commit 55f41e45)
-
Victor Stinner authored
Revert "[2.7] bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-9686)" (GH-10970) This reverts commit 4a7dd30f.
-
- 05 Dec, 2018 4 commits
-
-
Miss Islington (bot) authored
Escape the \t and \n. Follow up from https://github.com/python/cpython/pull/10814. (cherry picked from commit 2d8f976c) Co-authored-by: E Kawashima <e-kwsm@users.noreply.github.com>
-
Serhiy Storchaka authored
[2.7] bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH-8113). (GH-10946) (GH-10955) (cherry picked from commit 5b25f1d0) (cherry picked from commit 1de91a0032fed500ddd3d8c4fb7a38c0b8719f67) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>.
-
Serhiy Storchaka authored
(cherry picked from commit 67a93b3a)
-
Serhiy Storchaka authored
(cherry picked from commit 4edeaeac) Co-authored-by: Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com>
-