summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528)Lucas Cimon2019-01-221-0/+1
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-221-0/+2
* bpo-35758: Fix building on ARM + MSVC (gh-11531)Minmin Gong2019-01-211-0/+1
* bpo-35772: Fix test_tarfile on ppc64 (GH-11606)Victor Stinner2019-01-211-0/+6
* bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057)Pablo Galindo2019-01-211-0/+2
* bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495)Marc Schlaich2019-01-201-0/+1
* bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547)Anthony Sottile2019-01-181-0/+2
* bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614)Terry Jan Reedy2019-01-181-0/+3
* bpo-21257: document http.client.parse_headers (GH-11443)Ashwin Ramaswami2019-01-181-0/+1
* bpo-35045: Accept TLSv1 default in min max test (GH-11510)Christian Heimes2019-01-181-0/+2
* bpo-35769: Change IDLE's name for new files from 'Untitled' to 'untitled' (GH...Terry Jan Reedy2019-01-181-0/+1
* bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642)Serhiy Storchaka2019-01-181-0/+5
* bpo-33687: Fix call to os.chmod() in uu.decode() (GH-7282)Timo Furrer2019-01-171-0/+2
* bpo-35283: Add deprecation warning for Thread.isAlive (GH-11454)Dong-hee Na2019-01-171-0/+2
* bpo-35674: Add os.posix_spawnp() (GH-11554)Joannah Nanjekye2019-01-161-0/+2
* bpo-35537: subprocess uses os.posix_spawn in some cases (GH-11452)Victor Stinner2019-01-151-0/+2
* bpo-35746: Fix segfault in ssl's cert parser (GH-11569)Christian Heimes2019-01-151-0/+3
* bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566)Victor Stinner2019-01-151-0/+2
* bpo-34323: Enhance IocpProactor.close() log (GH-11555)Victor Stinner2019-01-151-0/+3
* bpo-35619: Improve support of custom data descriptors in help() and pydoc. (G...Serhiy Storchaka2019-01-151-0/+2
* bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692)MichaelSaah2019-01-141-0/+5
* bpo-35196: Optimize Squeezer's write() interception (GH-10454)Tal Einat2019-01-131-0/+1
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-132-0/+2
* bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_Fro...Serhiy Storchaka2019-01-121-0/+3
* bpo-35634: Raise an error when first passed kwargs contains duplicated keys. ...Serhiy Storchaka2019-01-121-0/+3
* bpo-35494: Improve syntax error messages for unbalanced parentheses in f-stri...Serhiy Storchaka2019-01-121-0/+1
* 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