- 20 Mar, 2019 1 commit
-
-
Julien Palard authored
(cherry picked from commit fc8284e2) Co-authored-by: Jean-François B <jfbu@free.fr>
-
- 19 Mar, 2019 3 commits
-
-
Inada Naoki authored
(cherry picked from commit 74ae50e5) Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
-
Stéphane Wirtel authored
Fix buffer overflow in send() and sendall() methods of socket.socket for data larger than 2 GiB.
- 18 Mar, 2019 2 commits
-
-
Julien Palard authored
(cherry picked from commit dfc8fc15fa989acba3c372572e52bbcb5ab38a37)
-
Victor Stinner authored
The test test_customize_compiler() now mocks all sysconfig variables and all environment variables used by customize_compiler(). (cherry picked from commit 72c7b372)
-
- 15 Mar, 2019 1 commit
-
-
Victor Stinner authored
Fix CFLAGS in customize_compiler() of distutils.sysconfig: when the CFLAGS environment variable is defined, don't override CFLAGS variable with the OPT variable anymore. Initial patch written by David Malcolm. Co-Authored-By: David Malcolm <dmalcolm@redhat.com> (cherry picked from commit 86082c22)
-
- 14 Mar, 2019 4 commits
-
-
Victor Stinner authored
Fix an unlikely memory leak on conversion from string to float in the function _Py_dg_strtod() used by float(str), complex(str), pickle.load(), marshal.load(), etc. Fix an unlikely memory leak in _Py_dg_strtod() on "undfl:" label: rewrite memory management in this function to always release all memory before exiting the function. Initialize variables to NULL, and set them to NULL after calling Bfree() at the "cont:" label. Note: Bfree(NULL) is well defined: it does nothing. (cherry picked from commit 9776b063)
-
stratakis authored
Fix a reference leak in _bufferedreader_read_all(): _io.BufferedIOMixin.read() leaks a reference on 'data' when it reads the whole file content but flush() fails.
-
stratakis authored
Fix a reference leak in json if parsing a floating point number fails. If PyOS_string_to_double() fails in _match_number_str(): decrement numstr ref counter.
-
stratakis authored
Fix reference leaks in _hotshot.LogReaderType on PyTuple_New() failure.
-
- 13 Mar, 2019 1 commit
-
-
Steve Dower authored
-
- 12 Mar, 2019 1 commit
-
-
Steve Dower authored
-
- 11 Mar, 2019 1 commit
-
-
Victor Stinner authored
Patch written by David Malcolm. Co-Authored-By: David Malcolm <dmalcolm@redhat.com>
-
- 08 Mar, 2019 2 commits
-
-
Miss Islington (bot) authored
* Update pip to 19.0.3 * Update setuptools to 40.8.0 (cherry picked from commit 01e0f439) Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
-
Terry Jan Reedy authored
Cherry picked by hand from a0e911b1
-
- 07 Mar, 2019 3 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit bf94cc7b) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
Steve Dower authored
-
Miss Islington (bot) authored
Remove 's' mention as there's no argument. (cherry picked from commit e942e7b5) Co-authored-by: Andre Delfino <adelfino@gmail.com>
-
- 06 Mar, 2019 2 commits
-
-
stratakis authored
Fix linuxaudiodev.linux_audio_device() error handling: close the internal file descriptor if it fails to open the device.
- 05 Mar, 2019 1 commit
-
-
Stéphane Wirtel authored
Use test_support.TEST_HTTP_URL (pythontest.net) instead of http://www.example.com/.
-
- 04 Mar, 2019 3 commits
-
-
T. Wouters authored
Fix off-by-one bug in cPickle that caused it to use uninitialised memory on truncated pickles read from FILE*s.
-
Christian Heimes authored
Fix two unlikely reference leaks in _hashopenssl. The leaks only occur in out-of-memory cases. Thanks to Charalampos Stratakis. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue36179. (cherry picked from commit b7bc283a) Co-authored-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue36179
-
stratakis authored
-
- 02 Mar, 2019 6 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Ned Deily authored
bpo-32129: Avoid blurry IDLE application icon on macOS with Tk 8.6. Original patch by Kevin Walzer. (GH-12034)
-
- 01 Mar, 2019 1 commit
-
-
Ned Deily authored
bpo-32129: Avoid blurry IDLE application icon on macOS with Tk 8.6. Original patch by Kevin Walzer. (GH-12034)
-
- 28 Feb, 2019 1 commit
-
-
Gao, Xiang authored
-
- 27 Feb, 2019 2 commits
-
-
Miss Islington (bot) authored
Did you know an API documented as printing the pending traceback would sometimes exit the process? You do now. (cherry picked from commit 41737720) Co-authored-by: Gregory P. Smith <greg@krypto.org>
-
Ned Deily authored
-
- 26 Feb, 2019 3 commits
-
-
Dima Pasechnik authored
The standard math library (libm) may follow IEEE-754 recommendation to include an implementation of sinPi(), i.e. sinPi(x):=sin(pi*x). And this triggers a name clash, found by FreeBSD developer Steve Kargl, who worked on putting sinpi into libm used on FreeBSD (it has to be named "sinpi", not "sinPi", cf. e.g. https://en.cppreference.com/w/c/experimental/fpext4).
-
Benjamin Peterson authored
-
Miss Islington (bot) authored
Per POSIX, `nice(3)` requires `unistd.h` and `exit(3)` requires `stdlib.h`. Fixing the test will prevent false positives with pedantic compilers like clang. (cherry picked from commit 90c6face) Co-authored-by: ngie-eign <1574099+ngie-eign@users.noreply.github.com>
-
- 24 Feb, 2019 2 commits