102320 Commits (f14c28f39766855420dd58d209da4ad847f3030e)
 

Author SHA1 Message Date
Steve Dower f14c28f397
bpo-34011: Fixes missing venv files and other tests (GH-9458) 8 years ago
Berker Peksag bc85475058
bpo-34754: Fix test_flush_return_value on FreeBSD (GH-9451) 8 years ago
Yury Selivanov e247b46cba
bpo-33649: More improvements (GH-9439) 8 years ago
Berker Peksag 8213eaddf3
bpo-19756: Prevent test failures due to EADDRNOTAVAIL (GH-9446) 8 years ago
Berker Peksag b10a64d117
bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426) 8 years ago
Berker Peksag 8d1e190fc5
bpo-32215: Fix performance regression in sqlite3 (GH-8511) 8 years ago
Yury Selivanov ffef50f1f5
bpo-34746: Fix stop -> close (GH-9437) 8 years ago
Steve Dower fd54a45f79 Enables test result collection for CI builds (GH-9433) 8 years ago
Victor Stinner 06e7608207
Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-9430) 8 years ago
Steve Dower 76531e2e82
Ignores failure to update lists (GH-9424) 8 years ago
Serhiy Storchaka b2984ab9a7
bpo-25711: Remove outdated zipimport tests. (GH-9404) 8 years ago
Ben Hoyt 3705b98620 bpo-34712: Fix style in examples in "Input and Output" (GH-9361) 8 years ago
jdemeyer e89de73987 bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416) 8 years ago
Benjamin Peterson b3b8cb419e
run autoconf (GH-9411) 8 years ago
Serhiy Storchaka 9da3961f36
bpo-25711: Move _ZipImportResourceReader from importlib to zipimport. (GH-9406) 8 years ago
Ross Burton 2a9c3805dd closes bpo-34585: Don't do runtime test to get float byte order. (GH-9085) 8 years ago
Yury Selivanov 471503954a
bpo-33649: Add a high-level section about Futures; few quick fixes (GH-9403) 8 years ago
Nathaniel J. Smith a3c88ef12c Clarify that AsyncExitStack works with coroutine functions (GH-9405) 8 years ago
Serhiy Storchaka 79d1c2e6c9
bpo-25711: Rewrite zipimport in pure Python. (GH-6809) 8 years ago
Silas Sewell 4ba3b50bfe bpo-34472: Add data descriptor signature to zipfile (GH-8871) 8 years ago
Steve Dower d0f49d2f50
bpo-34582: Adds JUnit XML output for regression tests (GH-9210) 8 years ago
Christian Heimes cb5778f00c bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146) 8 years ago
Serhiy Storchaka 0185f34ddc
bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant to invalid paths. (#7695) 8 years ago
Serhiy Storchaka 7bdf28265a
bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610) 8 years ago
Yury Selivanov b042cf10c6
bpo-33649: Fix markup; add another note that asyncio.run is 3.7+ (GH-9389) 8 years ago
Serhiy Storchaka e0c19ddc66
bpo-34681: Rename class Pattern in sre_parse to State. (GH-9310) 8 years ago
Miguel Ángel García 9c53fa6ad9 Fix syntax error on Asyncio example in doc (GH-9387) 8 years ago
Danny Hermes 7bfbda46f4 Change "set_after" reference to `say_after`. (GH-9384) 8 years ago
Yury Selivanov ac94e38d07
bpo-33649: Note that asyncio.run() calls shutdown_asyncgens() (GH-9380) 8 years ago
Victor Stinner dbdee0073c
bpo-34589: Add -X coerce_c_locale command line option (GH-9378) 8 years ago
Victor Stinner 7a0791b699
bpo-34589: C locale coercion off by default (GH-9073) 8 years ago
Elvis Pranskevichus 1fa2ec49be bpo-33649: A copy-editing pass on asyncio documentation (GH-9376) 8 years ago
Yury Selivanov 3085534c39
bpo-33649: Add a hello world example to asyncio.rst (GH-9374) 8 years ago
Victor Stinner 188ebfa475
bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371) 8 years ago
Yury Selivanov c62ab2862d
bpo-34717: Stop numbering stdlib titles/sections in the docs (GH-9370) 8 years ago
Steve Dower 6750922f8d
bpo-34267: Update find_python.bat to use 3.7 if available (GH-8552) 8 years ago
Victor Stinner 7484bdfd1e
bpo-34587, test_socket: remove RDSTest.testCongestion() (GH-9277) 8 years ago
Victor Stinner 1fb399ba4e
bpo-34715: Revert "Simplify PyInit_timezone. (GH-9323)" (GH-9366) 8 years ago
Yury Selivanov 394374e30c
bpo-33649: Add low-level APIs index. (GH-9364) 8 years ago
Steve Dower c6fd1c1c3a
bpo-32533: Fixed thread-safety of error handling in _ssl. (GH-7158) 8 years ago
Serhiy Storchaka 12a69db908
Convert os.readlink() to Argument Clinic. (GH-8778) 8 years ago
Serhiy Storchaka 9bdb7be482
bpo-34341: Fix appending to ZIP archives with the ZIP64 extension. (GH-8683) 8 years ago
Serhiy Storchaka da8d72c953
bpo-12458: Fix line numbers for multiline expressions. (GH-8774) 8 years ago
Serhiy Storchaka 5e99b56d6b
bpo-33216: Improve the documentation for CALL_FUNCTION_* (GH-8338) (GH-8784) 8 years ago
Alexandru Ardelean b3a271fc0c bpo-34710: fix SSL module build (GH-9347) 8 years ago
Serhiy Storchaka e0e5065dae
bpo-34610: Fixed iterator of multiprocessing.managers.DictProxy. (GH-9113) 8 years ago
Benjamin Peterson ddd1949fea
closes bpo-34673: Tweaks to make ceval more editable. (GH-9289) 8 years ago
Bumsik Kim 5cc583d940 bpo-33649: Clarify protocol_factory as a method parameter (GH-9330) 8 years ago
Vladimir Matveev 7843caeb90 bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258) 8 years ago
Monson Shao 10a428b64b closes bpo-34515: Support non-ASCII identifiers in lib2to3. (GH-8950) 8 years ago