summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-33746: Fix test_unittest.testRegisterResult() in verbose mode (GH-7799)Victor Stinner2018-06-202-9/+7
* bpo-33904: In IDLE's rstrip, rename class RstripExtension as Rstrip (GH-7811)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-06-204-5/+6
* bpo-33907: Rename an IDLE module and classes. (GH-7810)Terry Jan Reedy2018-06-204-11/+11
* bpo-33908: Remove two superfluous assignments (GH-7116)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-06-202-2/+0
* bpo-33907: Rename an IDLE module and class. (GH-7807)Terry Jan Reedy2018-06-207-32/+35
* bpo-33855: Still more edits and minimal tests for IDLE (GH-7784)Terry Jan Reedy2018-06-1936-95/+356
* bpo-33901: Add _gdbm._GDBM_VERSION (GH-7794)Victor Stinner2018-06-193-8/+52
* bpo-30345: Add -g to LDFLAGS for LTO (GH-7709)Victor Stinner2018-06-193-0/+17
* bpo-33901: Better test_dbm_gnu.test_reorganize() fix (GH-7795)Victor Stinner2018-06-192-7/+9
* bpo-33671 / shutil.copyfile: use memoryview() with dynamic size on Windows (#...Giampaolo Rodola2018-06-197-64/+153
* bpo-33365: print the header values beside the keys (GH-6611)Marco Strigl2018-06-193-1/+17
* bpo-33901: Fix test_dbm_gnu for gdbm 1.15 (GH-7791)Victor Stinner2018-06-192-2/+6
* Use more specific asserts in dbm tests. (GH-7786)Serhiy Storchaka2018-06-192-3/+4
* Change tp_size to tp_basicsize in comment and realign the comments (GH-6775)Bup2018-06-191-38/+38
* bpo-33843: Remove deprecated stuff in cgi module (GH-7662)INADA Naoki2018-06-195-81/+7
* bpo-33630: Fix using of freed memory in old versions of glicb for posix_spawn...Pablo Galindo2018-06-191-3/+22
* bpo-33663: Convert content length to string before putting to header (GH-7754)ValeriyaSinevich2018-06-182-1/+2
* bpo-33866: enum: Stop using OrderedDict (GH-7698)INADA Naoki2018-06-182-15/+7
* bpo-33855: More edits and new minimal tests for IDLE (GH-7761)Terry Jan Reedy2018-06-1830-338/+483
* bpo-33892: Doc: Use gender neutral words (GH-7770)Andrés Delfino2018-06-188-20/+20
* bpo-33856: Add "help" to the welcome message of IDLE (GH-7755)Stéphane Wirtel2018-06-162-1/+2
* bpo-33861: Minor improvements of tests for os.path. (GH-7715)Serhiy Storchaka2018-06-162-47/+61
* bpo-33859: Fix spelling mistakes in docs. (GH-7691)Xtreak2018-06-167-7/+7
* bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (...Carl Meyer2018-06-1612-1086/+1385
* bpo-33571: Improve the glossary description for '...' prompt (GH-6971)Andrés Delfino2018-06-161-2/+3
* bpo-33836: Recommend keyword-only param for memoization in FAQ (GH-7687)Noah Haasis2018-06-161-2/+2
* Use singular, we are talking about the access (GH-7727)Andrés Delfino2018-06-161-1/+1
* bpo-33873: regrtest: Add warning on -R 1:3 (GH-7736)Pablo Galindo2018-06-161-0/+7
* Add missing va_end() calls in PC/launcher.c (GH-7690)Zackery Spytz2018-06-151-0/+2
* bpo-33855: Minimally test all IDLE modules. (GH-7689)Terry Jan Reedy2018-06-1534-106/+420
* bpo-33824, bpo-32030: Fix pymain_read_conf() (GH-7712)Victor Stinner2018-06-152-0/+3
* Revert "bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protec...Victor Stinner2018-06-152-10/+2
* bpo-33854: Add PEP 461 title to 'See also' note (GH-7688)Andrés Delfino2018-06-151-1/+4
* bpo-33847: Add '@' operator entry to index (GH-7669)Andrés Delfino2018-06-152-1/+4
* bpo-33852: Remove misplaced parentheses around 'list'. (GH-7672)Andrés Delfino2018-06-151-1/+1
* bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protection -O0...Marcel Plch2018-06-152-2/+10
* gitattribute: Mark generated files (GH-7619)INADA Naoki2018-06-151-0/+17
* bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958)Wonsup Yoon2018-06-154-3/+22
* bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)Serhiy Storchaka2018-06-156-9/+14
* bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682)Serhiy Storchaka2018-06-153-2/+34
* bpo-17045: Improve C-API doc for PyTypeObject. (gh-7413)Eric Snow2018-06-143-129/+1180
* bpo-32962: python-gdb catchs UnicodeDecodeError (GH-7693)Victor Stinner2018-06-142-10/+18
* bpo-32962: python-gdb catchs ValueError on read_var() (GH-7692)Victor Stinner2018-06-142-2/+11
* bpo-33718: regrtest: use format_duration() to display failed tests (GH-7686)Victor Stinner2018-06-143-10/+44
* bpo-19382: Adding test cases for module tabnanny (GH-851)Jaysinh Shukla2018-06-142-1/+344
* bpo-33615: Re-enable subinterpreter tests. (#7552)Eric Snow2018-06-132-42/+51
* bpo-31378: Document sqlite3.OperationalError exception (GH-7677)Zackery Spytz2018-06-131-0/+7
* bpo-33828: Add missing versionchanged note for string.Formatter. (GH-7668)Xiang Zhang2018-06-131-2/+5
* Fixes upload script to always run commands even when previous ones fail (GH-7...Steve Dower2018-06-121-4/+10
* bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win...Giampaolo Rodola2018-06-128-19/+595