summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516)Serhiy Storchaka2019-01-121-0/+1
* bpo-35719: Optimize multi-argument math functions. (GH-11527)Serhiy Storchaka2019-01-121-0/+2
* bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972)Eric Snow2019-01-111-0/+3
* bpo-34569: Fix subinterpreter 32-bit ABI, pystate.c/_new_long_object() (gh-9...Michael Felt2019-01-111-0/+2
* bpo-32710: Fix _overlapped.Overlapped memory leaks (GH-11489)Victor Stinner2019-01-111-0/+2
* bpo-32146: Add documentation about frozen executables on Unix (GH-5850)Bo Bayles2019-01-101-0/+2
* bpo-35702: Add new identifier time.CLOCK_UPTIME_RAW for macOS 10.12 (GH-11503)Joannah Nanjekye2019-01-101-0/+1
* bpo-35641: Move IDLE blurb to IDLE directory (#11479)Terry Jan Reedy2019-01-091-0/+0
* bpo-24746: Avoid stripping trailing whitespace in doctest fancy diff (#10639)Sanyam Khurana2019-01-091-0/+2
* bpo-32710: Fix leak in Overlapped_WSASend() (GH-11469)Victor Stinner2019-01-081-0/+3
* bpo-35596: Use unchecked PYCs for the embeddable distro to avoid zipimport re...Steve Dower2019-01-081-0/+2
* bpo-35568: add 'raise_signal' function (GH-11335)Vladimir Matveev2019-01-081-0/+1
* bpo-35682: Fix _ProactorBasePipeTransport._force_close() (GH-11462)Victor Stinner2019-01-081-0/+2
* bpo-35642: Remove asynciomodule.c from pythoncore.vcxproj (GH-11410)Gregory Szorc2019-01-081-0/+1
* bpo-33717: pythoninfo logs information of all clocks (GH-11460)Victor Stinner2019-01-081-0/+2
* bpo-32710: test_asyncio: test_sendfile reset policy (GH-11461)Victor Stinner2019-01-071-0/+3
* bpo-35664: Optimize operator.itemgetter (GH-11435)Raymond Hettinger2019-01-071-0/+4
* bpo-35560: Remove assertion from format(float, "n") (GH-11288)Xtreak2019-01-071-0/+3
* bpo-35660: Fix imports in idlelib.window (#11434)Cheryl Sabella2019-01-061-0/+1
* bpo-35488: Add tests for ** glob matching in pathlib (GH-11171)Anthony Shaw2019-01-061-0/+1
* bpo-35641: IDLE - format calltip properly when no docstring (GH-11415)Emmanuel Arias2019-01-032-0/+2
* bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395)Terry Jan Reedy2019-01-031-0/+1
* closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sh...Mickaël Schoentgen2019-01-021-0/+2
* Revert "bpo-35603: Escape table header of make_table output that can cause po...Serhiy Storchaka2019-01-021-2/+0
* bpo-35588: Speed up mod, divmod and floordiv operations for Fraction type (#1...Stefan Behnel2019-01-021-0/+2
* closes bpo-35623: Fix integer overflow when sorting large lists (GH-11380)sth2019-01-021-0/+1
* bpo-35598: IDLE - Globalize some config_key objects (GH-11392)Cheryl Sabella2018-12-311-1/+2
* bpo-35614: Fix pydoc help() on metaclasses (#11357)Sanyam Khurana2018-12-311-0/+1
* bpo-35214: Annotate posix calls for clang MSan. (#11389)Gregory P. Smith2018-12-311-1/+1
* bpo-35214: Skip test_io tests that'd cause a huge malloc under msan (#11385)Gregory P. Smith2018-12-311-1/+1
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Jakub Kulík2018-12-311-0/+1
* bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375)Gregory P. Smith2018-12-311-0/+2
* bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373)Gregory P. Smith2018-12-301-0/+2
* bpo-35598: IDLE: Switch config_key dialog to ttk widgets (GH-11365)Cheryl Sabella2018-12-301-1/+1
* bpo-32492: 1.6x speed up in namedtuple attribute access using C fast-path (#1...Pablo Galindo2018-12-301-0/+2
* bpo-35598: IDLE: Increase test coverage for config_key.py (#11360)Cheryl Sabella2018-12-301-1/+1
* bpo-35603: Escape table header of make_table output that can cause potential ...Xtreak2018-12-291-0/+2
* bpo-34055: Revert deletion of line in IDLE's PyShell (#11346)Terry Jan Reedy2018-12-291-0/+1
* bpo-28097: IDLE - Add Previous/Next History to Shell menu (#11325)Cheryl Sabella2018-12-281-0/+1
* bpo-20849: add dirs_exist_ok arg to shutil.copytree (patch by Josh Bronson)jab2018-12-281-0/+2
* bpo-11191: skip unsupported test_distutils case for AIX with xlc (GH-8709)Michael Felt2018-12-281-0/+2
* bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726)Michael Felt2018-12-281-0/+3
* bpo-35591: IDLE Find Selection now works when selection not found (GH-11339)Terry Jan Reedy2018-12-281-0/+1
* bpo-35598: IDLE: Update config_key.py with PEP8 names (GH-11330)Cheryl Sabella2018-12-281-0/+1
* Revert "bpo-35402: Update macOS installer to use Tcl 8.6.9 / Tk 8.6.9.1 (GH-1...Ned Deily2018-12-271-1/+0
* bpo-35596: Fix vcruntime140.dll being added to embeddable distro multiple tim...Steve Dower2018-12-271-0/+1
* Speed-up building enums by value, e.g. http.HTTPStatus(200) (#11318)Andrew Svetlov2018-12-261-0/+1
* bpo-34897: avoid distutils test error when CXX is not set (GH-9706)Michael Felt2018-12-261-0/+2
* bpo-34711: Return HTTPStatus.NOT_FOUND if path.endswith('/') and not a direct...Michael Felt2018-12-261-0/+3
* bpo-27643 - skip test_ctypes test case with XLC compiler. (GH-5164)Michael Felt2018-12-261-0/+5