summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Doc: -W flag for sphinx-build can be disabled (GH-10303)Julien Palard2018-11-031-2/+3
* bpo-34969: Add --fast, --best on the gzip CLI (GH-9833)Stéphane Wirtel2018-11-034-14/+63
* Fix a typo about a comma. (GH-10306)İsmail Arılık2018-11-031-1/+1
* bpo-35147: Fix _Py_NO_RETURN for GCC (GH-10300)Alexey Izbyshev2018-11-021-3/+3
* bpo-29341: Clarify that path-like objects are accepted in some os methods (GH...BNMetrics2018-11-023-31/+33
* bpo-33578: Fix getstate/setstate for CJK decoder (GH-10290)Christopher Thorne2018-11-022-5/+26
* closes bpo-35139: The `pyexpat` module's macros in `Modules/Setup` now match ...Max Bélanger2018-11-022-1/+2
* Simplify sys.breakpointhook implementation (#9519)Anthony Sottile2018-11-011-9/+1
* bpo-35075: Fix broken url in the pprint documentation (GH-10201)Pablo Galindo2018-11-012-121/+150
* bpo-33578: Add getstate/setstate for CJK codec (GH-6984)Christopher Thorne2018-11-018-22/+416
* bpo-35128: Fix spacing issues in warning.warn() messages. (GH-10268)Pablo Aguiar2018-11-015-6/+6
* bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273)Victor Stinner2018-11-0117-110/+150
* bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271)Victor Stinner2018-11-019-20/+17
* bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)Victor Stinner2018-11-0120-104/+144
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-3178-137/+138
* bpo-26558: Fix Py_FatalError() with GIL released (GH-10267)Victor Stinner2018-10-311-10/+25
* bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)Victor Stinner2018-10-3110-10/+20
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Xiang Zhang2018-10-313-1/+13
* bpo-35110: Fix yet few spaces before dashes. (GH-10255)Serhiy Storchaka2018-10-312-4/+4
* Fix a possible crash in range.__reversed__(). (GH-10252)Zackery Spytz2018-10-311-0/+1
* bpo-33138: Change standard error message for non-pickleable and non-copyable ...Serhiy Storchaka2018-10-3111-91/+17
* bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231)Serhiy Storchaka2018-10-3134-124/+128
* bpo-35116, urllib.parse: Document the new max_num_fields parameter (GH-10247)matthewbelisle-wf2018-10-301-2/+16
* bpo-35086: Fix tkinter example "A Simple Hello World Program". (GH-10160)Daniel Lovell2018-10-301-1/+2
* bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239)Victor Stinner2018-10-3010-10/+23
* bpo-35081: Cleanup pystate.c and pystate.h (GH-10240)Victor Stinner2018-10-304-31/+26
* bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223)Victor Stinner2018-10-302-21/+24
* bpo-32030: Make _PySys_AddXOptionWithError() private (GH-10236)Victor Stinner2018-10-302-8/+8
* bpo-34523: Fix config_init_fs_encoding() for ASCII (GH-10232)Victor Stinner2018-10-302-20/+24
* bpo-31680: Add curses.ncurses_version. (GH-4217)Serhiy Storchaka2018-10-305-3/+119
* bpo-33237: Improve AttributeError message for partially initialized module. (...Serhiy Storchaka2018-10-307-23/+67
* bpo-34876: Change the lineno of the AST for decorated function and class. (GH...Serhiy Storchaka2018-10-307-2491/+2560
* Doc: fix asyncio loop.close() description (GH-10229)Andriy Maletsky2018-10-291-1/+1
* bpo-35031: Fix test_start_tls_server_1 on FreeBSD buildbots (GH-10011)Pablo Galindo2018-10-291-0/+7
* bpo-34765: install-sh is executable (GH-10225)Victor Stinner2018-10-291-0/+0
* bpo-34945: Buffer output in test suite only when creating junit file (GH-10204)Pablo Galindo2018-10-292-14/+16
* bpo-35059: Convert Py_XINCREF() to static inline function (GH-10224)Victor Stinner2018-10-291-13/+17
* Include memo in the documented signature of copy.deepcopy()Stephan Hoyer2018-10-291-3/+3
* bpo-34160: Preserve user specified order of Element attributes in html. (GH-1...Serhiy Storchaka2018-10-292-9/+5
* bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565)Serhiy Storchaka2018-10-294-1845/+1813
* bpo-35059: Remove Py_STATIC_INLINE() macro (GH-10216)Victor Stinner2018-10-293-42/+25
* bpo-35059: Convert Py_INCREF() to static inline function (GH-10079)Victor Stinner2018-10-291-29/+42
* bpo-27741: Better wording for datetime.strptime() (GH-9994)Gus Goulart2018-10-291-1/+3
* Fix a possible "double decref" in termios.tcgetattr(). (GH-10194)Zackery Spytz2018-10-291-2/+2
* bpo-35097: Add IDLE doc subsection explaining editor windows. (#10206)Terry Jan Reedy2018-10-293-1/+37
* bpo-33234: Add exact allocation optimization to lists in What's New (GH-10200)Pablo Galindo2018-10-281-0/+5
* bpo-35047, unittest.mock: Better error messages on assert_called_xxx failures...Petter Strandmark2018-10-284-8/+62
* Issue 35093: Document the IDLE document viewer in the IDLE doc. (#10195)Terry Jan Reedy2018-10-283-20/+42
* bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846)Pablo Galindo2018-10-283-0/+51
* Fix yet one error in checking Tcl version. (GH-10189)Serhiy Storchaka2018-10-281-1/+1