summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)Miss Islington (bot)2019-06-125-3/+13
* bpo-37160: Thread native ID NetBSD support (GH-13835)Miss Islington (bot)2019-06-125-3/+9
* bpo-35766: compile(): rename feature_version parameter (GH-13994) (GH-14001)Victor Stinner2019-06-124-10/+16
* bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...Miss Islington (bot)2019-06-121-0/+2
* Add some placeholder notes for major 3.8 features (GH-13927) (#13929)Miss Islington (bot)2019-06-121-0/+7
* bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997) (GH-14000)Miss Islington (bot)2019-06-121-1/+1
* bpo-29505: Fuzz json module, enforce size limit on int(x) fuzz (GH-13991)Miss Islington (bot)2019-06-1210-1/+171
* bpo-32625: Updated documentation for EXTENDED_ARG. (GH-13985)Miss Islington (bot)2019-06-121-4/+4
* bpo-36918: Fix "Exception ignored in" in test_urllib (GH-13996)Miss Islington (bot)2019-06-121-6/+15
* bpo-35766: Change format for feature_version to (major, minor) (GH-13992) (GH...Miss Islington (bot)2019-06-124-10/+19
* [3.8] bpo-36520: Email header folded incorrectly (GH-13608) (GH-13909)Abhilash Raj2019-06-113-0/+133
* bpo-37238: Enable building for Windows using Visual Studio 2019 (GH-13988)Miss Islington (bot)2019-06-112-1/+2
* bpo-35766: What's new in the ast and typing modules (GH-13984)Miss Islington (bot)2019-06-111-0/+46
* bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)Miss Islington (bot)2019-06-112-6/+34
* Fix test_posix if RWF_HIPRI is defined but not preadv2. (GH-13980)Miss Islington (bot)2019-06-111-0/+2
* closes bpo-33758: Skip test_get_type_hints_modules_forwardref. (GH-13977)Miss Islington (bot)2019-06-111-2/+2
* bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13...Miss Islington (bot)2019-06-113-8/+7
* [3.8] bpo-37216: Fix version and filename in Mac using document (GH-13964)Makdon2019-06-111-2/+2
* closes bpo-35184: Fix XML_POOR_ENTROPY option that breaks makesetup parsing o...Miss Islington (bot)2019-06-111-1/+1
* bpo-37215: Fix dtrace issue introduce by bpo-36842 (GH-13940)Miss Islington (bot)2019-06-102-5/+6
* bpo-11122: fix hardcoded path checking for rpmbuild in bdist_rpm.py (GH-10594)Miss Islington (bot)2019-06-082-4/+2
* bpo-37178: Allow a one argument form of math.perm() (GH-13905) (GH-13919)Miss Islington (bot)2019-06-086-9/+34
* bpo-34886: Fix subprocess.run handling of exclusive arguments (GH-11727)Miss Islington (bot)2019-06-082-2/+7
* bpo-29505: Fix interpreter in fuzzing targets to be relocatable (GH-13907)Miss Islington (bot)2019-06-081-0/+8
* bpo-37173: Show passed class in inspect.getfile error (GH-13861)Miss Islington (bot)2019-06-083-3/+22
* [3.8] bpo-37188: Fix a divide-by-zero in arrays of size-0 objects (#13911)Miss Islington (bot)2019-06-082-1/+16
* cross port importlib-metadata PR GH-76 (GH-13903)Miss Islington (bot)2019-06-074-0/+4
* bpo-37150: Throw ValueError if FileType class object was passed in add_argume...Miss Islington (bot)2019-06-073-0/+23
* IDLE: Standardize naming convention for DummyEditwin in tests (GH-13876) (#13...Miss Islington (bot)2019-06-071-2/+2
* bpo-37138: fix undefined behaviour with memcpy() on NULL array (GH-13867)Miss Islington (bot)2019-06-071-1/+5
* bpo-37181: Fix test_regrtest failures on Windows arm64 (GH-13872)Miss Islington (bot)2019-06-073-3/+8
* bpo-37191: Avoid declaration-after-statement in header included from Python.h...Petr Viktorin2019-06-072-4/+10
* bpo-37191: Move TestPEP590 from test_capi to test_call (GH-13892)Miss Islington (bot)2019-06-072-115/+123
* bpo-37169: Rewrite _PyObject_IsFreed() unit tests (GH-13888) (GH-13895)Victor Stinner2019-06-073-27/+30
* [3.8] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH...Zackery Spytz2019-06-074-4/+29
* bpo-37177: make IDLE's search dialogs transient (GH-13869)Miss Islington (bot)2019-06-073-5/+10
* bpo-37134: Add PEP570 notation to the signature of byte{array}.translate (GH-...Miss Islington (bot)2019-06-061-2/+2
* bpo-37156: Fix libssl DLL tag in MSI sources (GH-13866)Miss Islington (bot)2019-06-061-2/+3
* bpo-36763, _testembed: enable assert() in release mode (GH-13857)Miss Islington (bot)2019-06-061-2/+5
* bpo-37134: Use PEP570 syntax for sum() (GH-13851)Miss Islington (bot)2019-06-051-3/+3
* bpo-37165: Convert _count_elements to the argument clinic (GH-13848)Miss Islington (bot)2019-06-053-12/+49
* bpo-33725, multiprocessing doc: rephase warning against fork on macOS (GH-13841)Miss Islington (bot)2019-06-051-2/+3
* bpo-37158: Simplify and speed-up statistics.fmean() (GH-13832) (GH-13843)Miss Islington (bot)2019-06-052-4/+5
* bpo-26836: Document os.memfd_create() name parameter (GH-13838) (GH-13839)Miss Islington (bot)2019-06-051-0/+7
* bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-1...Miss Islington (bot)2019-06-052-2/+8
* Fix documentation (GH-13721)Miss Islington (bot)2019-06-051-0/+4
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...Miss Islington (bot)2019-06-051-0/+16
* bpo-35763: Make IDLE calltip note about '/' less obtrusive (GH-13791)Miss Islington (bot)2019-06-053-61/+69
* Doc: Python 3.9 in sidebar and version switcher. (GH-13824)Miss Islington (bot)2019-06-042-2/+4
* Post v3.8.0b1Ɓukasz Langa2019-06-041-1/+1