- 04 Jul, 2018 1 commit
-
-
Miss Islington (bot) authored
(cherry picked from commit b4588c2f) Co-authored-by: Benjamin Peterson <benjamin@python.org>
-
- 03 Jul, 2018 2 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 831c2972) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
-
Victor Stinner authored
When hunting memory leaks using -R 3:3, test_imap_unordered() of test_multiprocessing leaks randomly a few memory blocks. It is a false alarm: when testing using -R 3:20 for example, no leak is detected. Modify test_imap_unordered() to be closer to test_imap(): * Only test 10 numbers instead of 1000: it's a pool of 4 processes, so 10 is enough to test at least one number per process * Use chunksize=100 instead of chunksize=53 to mimick test_imap() (cherry picked from commit 23401fb9)
-
- 30 Jun, 2018 1 commit
-
-
Serhiy Storchaka authored
Fix passing lists and tuples of strings containing special characters '"', '\\', '{', '}' and '\n' as options to tkinter.ttk widgets. (cherry picked from commit 5bb5bbfc)
-
- 29 Jun, 2018 1 commit
-
-
Zackery Spytz authored
(cherry picked from commit 23db935b) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
- 28 Jun, 2018 2 commits
-
-
Ned Deily authored
-
Miss Islington (bot) authored
(cherry picked from commit 62b6cea6) Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com>
-
- 27 Jun, 2018 2 commits
-
-
Benjamin Peterson authored
(cherry picked from commit 4e21100f) Co-authored-by: Benjamin Peterson <benjamin@python.org>
-
Ned Deily authored
-
- 26 Jun, 2018 2 commits
-
-
Victor Stinner authored
* bpo-33718: regrtest: use format_duration() to display failed tests (GH-7686) * Enhance also format_duration(): work on integers and rounds towards +infinity (math.ceil). * Write unit tests on format_duration() (cherry picked from commit 4ffe9c2b) * bpo-33873: regrtest: Add warning on -R 1:3 (GH-7736) regrtest: Add warning when using less than 3 warmup runs like -R 1:3. (cherry picked from commit cac4fef8) * bpo-33873: Fix bug in `runtest.py` and add checks for invalid `-R` parameters (GH-7735) Fix bug in `Lib/test/libregrtest/runtest.py` that makes running tests an extra time than the specified number of runs. Add check for invalid --huntrleaks/-R parameters. (cherry picked from commit 58ed7307)
-
Zachary Ware authored
-
- 25 Jun, 2018 2 commits
-
-
Tal Einat authored
(cherry picked from commit 4a6e7460) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
Tal Einat authored
Adds references to info about file modes, `time.strftime()`, string formatting syntaxes, and logging levels. (cherry picked from commit a8ddf85a) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
- 24 Jun, 2018 2 commits
-
-
native-api authored
-
Andrés Delfino authored
(cherry picked from commit c45cb479074b5d25f0d382d3109f527520a9f03c) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
- 23 Jun, 2018 4 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 38cf49bf) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
Benjamin Peterson authored
-
Benjamin Peterson authored
(cherry picked from commit 9ac11a75) Co-authored-by: Benjamin Peterson <benjamin@python.org>
-
Andrés Delfino authored
The statement is true for Windows (and macOS) also.. (cherry picked from commit c9d43c70) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
- 22 Jun, 2018 1 commit
-
-
Victor Stinner authored
Add -g to LDFLAGS when compiling with LTO to get debug symbols.
-
- 21 Jun, 2018 1 commit
-
-
Anselm Kruis authored
Set the openssl version to 1.0.2o and fix compiling Tcl.
-
- 20 Jun, 2018 1 commit
-
-
Victor Stinner authored
Fix test_gdbm.test_reorganize() on macOS with gdbm 1.15: add a larger value to make sure that the file size changes. (cherry picked from commit 13c79c677f9ec9437c82eda72fa1c2d288d8fceb)
-
- 19 Jun, 2018 2 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 71ca738f4cd2696d056d0cdb83bebd576f98ccc2) Co-authored-by: Xiang Zhang <angwerzx@126.com>
-
Xtreak authored
-
- 18 Jun, 2018 1 commit
-
-
Andrés Delfino authored
(cherry picked from commit 5092439c) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
- 16 Jun, 2018 3 commits
-
-
Terry Jan Reedy authored
Make it the same as when one runs 'python'.. (cherry picked from commit 9d49f850) Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
-
Miss Islington (bot) authored
Mention that it can be triggered by triple quotes and after specifying decorators. (cherry picked from commit 68680035) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
Miss Islington (bot) authored
" ... access to elements is O(1)." (cherry picked from commit 7469ff50) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
- 15 Jun, 2018 4 commits
-
-
Victor Stinner authored
Fix comparison between signed and unsigned integers. Example of fixed warning: Modules\_sre.c(838): warning C4018: '<' : signed/unsigned mismatch (cherry picked from commit 1fa174a4)
-
Victor Stinner authored
* bpo-32962: python-gdb catchs ValueError on read_var() (GH-7692) python-gdb now catchs ValueError on read_var(): when Python has no debug symbols for example. (cherry picked from commit 019d33b7) * bpo-32962: python-gdb catchs UnicodeDecodeError (GH-7693) python-gdb now catchs UnicodeDecodeError exceptions when calling string(). (cherry picked from commit d22fc0bc) bpo-29367: python-gdb.py now supports also method-wrapper (wrapperobject) objects. (cherry picked from commit 61108333)
-
Andrés Delfino authored
'expresson list' refers to the grammar term 'expression_list' in the subscription production.. (cherry picked from commit 4fddd4e4) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
Xiang Zhang authored
Hangul composition check boundaries are wrong for the second character ([0x1161, 0x1176) instead of [0x1161, 0x1176]) and third character ((0x11A7, 0x11C3) instead of [0x11A7, 0x11C3]).. (cherry picked from commit d134809c) Co-authored-by: Wonsup Yoon <pusnow@me.com>
-
- 13 Jun, 2018 2 commits
-
-
Xiang Zhang authored
string.Formatter auto-numbering feature was added in 3.4 and not available in 2.7. Make the documentation unambiguous.
-
Andrés Delfino authored
-
- 11 Jun, 2018 1 commit
-
-
Ned Deily authored
-
- 10 Jun, 2018 1 commit
-
-
Mariatta authored
(cherry picked from commit d689f976) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
-
- 09 Jun, 2018 4 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 0aa17ee6) Co-authored-by: Ammar Askar <ammar_askar@hotmail.com>
-
Zachary Ware authored
We can't just skip the test if docutils is available, but pygments is not because the purpose of the test was testing a bug in _check_rst_data(). (cherry-picked from b5bb404c)
-
Victor Stinner authored
If tests are re-run, use "xxx then yyy" result format (ex: "FAILURE then SUCCESS") to show that some failing tests have been re-run. Add also test_regrtest.test_rerun_fail() test. (cherry picked from commit c45fc767)
-
Miss Islington (bot) authored
- bugfix and test for fragile metavar handling in argparse (see bpo-24089, bpo-14046, bpo-25058, bpo-11874) - also fixes some incorrect tests that did not make 1-element tuples correctly (cherry picked from commit 66f02aa3) Co-authored-by: wim glenn <wim.glenn@gmail.com>
-