summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fix pickletools doc for NEWFALSE. (GH-9432)Krzysztof Wroblewski2018-09-221-6/+2
* bpo-34759: Fix error handling in ssl 'unwrap()' (GH-9468)Nathaniel J. Smith2018-09-222-2/+43
* bpo-34623: Mention CVE-2018-14647 in news entry (GH-9482)Christian Heimes2018-09-221-2/+2
* bpo-29577: Enum: mixin classes don't mix well with already mixed Enums (GH-9328)Ethan Furman2018-09-224-34/+229
* bpo-32117: Allow tuple unpacking in return and yield statements (gh-4509)David Cuthbert2018-09-224-6/+18
* bpo-34537: Fix test_gdb:test_strings with LC_ALL=C (GH-9483)Elvis Pranskevichus2018-09-222-1/+16
* bpo-32718: Make Activate.ps1 for venv cross-platform and available on all pla...Brett Cannon2018-09-213-2/+16
* bpo-33649: Fix gather() docs; fix title; few other nits. (GH-9475)Yury Selivanov2018-09-211-11/+15
* Make docs of exitcode for subprocess.getstatusoutput more clear. (GH-9477)Xiang Zhang2018-09-211-2/+3
* bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)Yury Selivanov2018-09-216-45/+106
* Minor performance tweak for deque.index() with a start argument (GH-9440)Raymond Hettinger2018-09-212-2/+12
* bpo-34755: Add few minor optimizations in _asynciomodule.c. (GH-9455)Serhiy Storchaka2018-09-211-158/+116
* bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418)Zackery Spytz2018-09-212-0/+2
* Simplify PyInit_timezone. (GH-9467)Benjamin Peterson2018-09-212-50/+52
* closes bpo-34656: Avoid relying on signed overflow in _pickle memos. (GH-9261)Benjamin Peterson2018-09-211-31/+31
* bpo-34011: Fixes missing venv files and other tests (GH-9458)Steve Dower2018-09-208-114/+148
* bpo-34754: Fix test_flush_return_value on FreeBSD (GH-9451)Berker Peksag2018-09-201-2/+3
* bpo-33649: More improvements (GH-9439)Yury Selivanov2018-09-202-47/+176
* bpo-19756: Prevent test failures due to EADDRNOTAVAIL (GH-9446)Berker Peksag2018-09-201-0/+3
* bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426)Berker Peksag2018-09-201-0/+6
* bpo-32215: Fix performance regression in sqlite3 (GH-8511)Berker Peksag2018-09-202-4/+6
* bpo-34746: Fix stop -> close (GH-9437)Yury Selivanov2018-09-201-1/+1
* Enables test result collection for CI builds (GH-9433)Steve Dower2018-09-193-3/+30
* Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-...Victor Stinner2018-09-1917-242/+87
* Ignores failure to update lists (GH-9424)Steve Dower2018-09-191-1/+1
* bpo-25711: Remove outdated zipimport tests. (GH-9404)Serhiy Storchaka2018-09-191-49/+0
* bpo-34712: Fix style in examples in "Input and Output" (GH-9361)Ben Hoyt2018-09-191-4/+7
* bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416)jdemeyer2018-09-193-3/+46
* run autoconf (GH-9411)Benjamin Peterson2018-09-193-100/+51
* bpo-25711: Move _ZipImportResourceReader from importlib to zipimport. (GH-9406)Serhiy Storchaka2018-09-193-952/+1067
* closes bpo-34585: Don't do runtime test to get float byte order. (GH-9085)Ross Burton2018-09-193-63/+99
* bpo-33649: Add a high-level section about Futures; few quick fixes (GH-9403)Yury Selivanov2018-09-185-45/+148
* Clarify that AsyncExitStack works with coroutine functions (GH-9405)Nathaniel J. Smith2018-09-181-2/+2
* bpo-25711: Rewrite zipimport in pure Python. (GH-6809)Serhiy Storchaka2018-09-1823-3408/+2998
* bpo-34472: Add data descriptor signature to zipfile (GH-8871)Silas Sewell2018-09-183-2/+8
* bpo-34582: Adds JUnit XML output for regression tests (GH-9210)Steve Dower2018-09-1812-33/+329
* bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)Christian Heimes2018-09-184-1/+15
* bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ...Serhiy Storchaka2018-09-1815-54/+181
* bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)Serhiy Storchaka2018-09-188-26/+99
* bpo-33649: Fix markup; add another note that asyncio.run is 3.7+ (GH-9389)Yury Selivanov2018-09-182-2/+3
* bpo-34681: Rename class Pattern in sre_parse to State. (GH-9310)Serhiy Storchaka2018-09-183-26/+26
* Fix syntax error on Asyncio example in doc (GH-9387)Miguel Ángel García2018-09-181-1/+1
* Change "set_after" reference to `say_after`. (GH-9384)Danny Hermes2018-09-181-1/+1
* bpo-33649: Note that asyncio.run() calls shutdown_asyncgens() (GH-9380)Yury Selivanov2018-09-181-1/+5
* bpo-34589: Add -X coerce_c_locale command line option (GH-9378)Victor Stinner2018-09-188-52/+160
* bpo-34589: C locale coercion off by default (GH-9073)Victor Stinner2018-09-178-16/+49
* bpo-33649: A copy-editing pass on asyncio documentation (GH-9376)Elvis Pranskevichus2018-09-1712-349/+347
* bpo-33649: Add a hello world example to asyncio.rst (GH-9374)Yury Selivanov2018-09-171-0/+13
* bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371)Victor Stinner2018-09-177-32/+46
* bpo-34717: Stop numbering stdlib titles/sections in the docs (GH-9370)Yury Selivanov2018-09-171-2/+3