- 15 May, 2018 9 commits
-
-
Stéphane Wirtel authored
-
Victor Stinner authored
Don't crash on warnings.warn_explicit() if module_globals is not a dict.
-
Barry Warsaw authored
-
Terry Jan Reedy authored
Added to the eye-verified htest, not to the unittests. Also remove some stray leftover comments.
-
Matthias Bussonnier authored
Also bump PendingDeprecationWarning to DeprecationWarning.
-
Eric V. Smith authored
-
Benjamin Peterson authored
-
Eitan Adler authored
Instead of passing configure args such as --without-gcc or --with-icc, instead prefer to rely on the native way of finding the compiler: passing CC (or CPP or CXX depending). This allows configure to find the correct compiler instead of having to be explicitly told. It also more correctly builds on both macOS and FreeBSD since the system compiler is used by default (cc)
-
Eric V. Smith authored
-
- 14 May, 2018 15 commits
-
-
Segev Finer authored
-
Ned Deily authored
-
Travis DePrato authored
-
Amber Brown authored
bpo-33497: Add errors param to cgi.parse_multipart and make an encoding in FieldStorage use the given errors (GH-6804)
-
Eric V. Smith authored
-
Alex Gaynor authored
-
ukwksk authored
-
-
Romuald Brunet authored
Most of the parameters were added in 3.4.4 (b9bf913a), but this change was not documented
-
Alex Gaynor authored
-
Eric V. Smith authored
-
Elena Oat authored
Clarify that flush is implied when the call to write contains a newline character.
-
Michael Lazar authored
The urllib.robotparser's __str__ representation now includes wildcard entries and the "Crawl-delay" and "Request-rate" fields. Also removes extra newlines that were being appended to the end of the string.
-
Anders Kaseorg authored
This happens in the NixOS build sandbox, for example, where the only other user is nobody with home directory /.
-
Eitan Adler authored
./.github/PULL_REQUEST_TEMPLATE.md:8: MD031 Fenced code blocks should be surrounded by blank lines ./.github/PULL_REQUEST_TEMPLATE.md:10: MD031 Fenced code blocks should be surrounded by blank lines ./.github/PULL_REQUEST_TEMPLATE.md:19: MD031 Fenced code blocks should be surrounded by blank lines ./.github/PULL_REQUEST_TEMPLATE.md:21: MD031 Fenced code blocks should be surrounded by blank lines
-
- 13 May, 2018 2 commits
-
-
Jelle Zijlstra authored
small_stmt -> compound_stmt
-
Rolf Eike Beer authored
The hash implementation casts the input pointer to uint64_t* and directly reads from this, which may cause unaligned accesses. Use memcpy() instead so this code will not crash with SIGBUS on sparc. https://bugs.gentoo.org/show_bug.cgi?id=636400
-
- 11 May, 2018 2 commits
-
-
Miro Hrončok authored
Pass os.environ's copy to new process created at test_posix: test_specify_environment. Otherwise important variables such as LD_LIBRARY_PATH are not set and the child process might not work at all in an environment where such variables are required for Python to function.
-
Ivan Levkivskyi authored
-
- 10 May, 2018 2 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- 09 May, 2018 6 commits
-
-
Oren Milman authored
-
sblondon authored
-
Serhiy Storchaka authored
-
Julien Palard authored
-
jdemeyer authored
-
Ivan Levkivskyi authored
This also fixes https://bugs.python.org/issue33420
-
- 08 May, 2018 4 commits
-
-
Grant Jenks authored
-
Ivan Levkivskyi authored
-
Serhiy Storchaka authored
random() takes precedence over getrandbits() if defined later in the class tree.
-
Serhiy Storchaka authored
* Expose the sigset_t converter via private API _Py_Sigset_Converter(). * Use Argument Clinic for parsing sigset_t in signalmodule.c. * Raise ValueError instead OverflowError for integers out of the C long range. Based on patch by Pablo Galindo Salgado.
-