summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Silence find_module() DeprecationWarning on Windows testsfind_module-deprecation-windowsBrett Cannon2021-04-231-1/+4
* bpo-39950: add `pathlib.Path.hardlink_to()` method that supersedes `link_to()...Barney Gale2021-04-235-4/+64
* bpo-43921: ignore failing test_wrong_cert_tls13 on Windows (GH-25561)Christian Heimes2021-04-231-2/+10
* bpo-43538: Add extra arguments to os.startfile (GH-25538)Steve Dower2021-04-236-25/+126
* bpo-43607: Fix urllib handling of Windows paths with \\?\ prefix (GH-25539)Steve Dower2021-04-233-1/+29
* bpo-35114: Make ssl.RAND_status() return a bool (GH-20063)Zackery Spytz2021-04-233-5/+7
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-2317-592/+1060
* bpo-43868: Remove PyOS_ReadlineFunctionPointer from the stable ABI list (GH-2...Petr Viktorin2021-04-235-2/+10
* bpo-38820: Test with OpenSSL 3.0.0-alpha15 (GH-25537)Christian Heimes2021-04-232-2/+2
* bpo-43795: PEP-652: Clean up the stable ABI/limited API (GH-25482)Petr Viktorin2021-04-237-14/+7
* bpo-43795: PEP-652: Simplify headers for easier static analysis (GH-25483)Petr Viktorin2021-04-232-1/+4
* bpo-41282: (PEP 632) Deprecate distutils.sysconfig (partial implementation of...Lumír 'Frenzy' Balhar2021-04-2315-446/+212
* bpo-43920: Make load_verify_locations(cadata) error message consistent (GH-25...Christian Heimes2021-04-233-10/+26
* bpo-43852: Improve tuple creation in sqlite3 (GH-25421)Erlend Egeberg Aasland2021-04-232-18/+10
* bpo-37363: Add audit events to the `http.client` module (GH-21321)Saiyang Gou2021-04-235-0/+41
* bpo-37751: Document codecs.lookup() change in What's New in Python 3.9 (GH-23...Hai Shi2021-04-231-0/+6
* Add more tests. Fix code excerpt. (GH-25549)Raymond Hettinger2021-04-221-3/+18
* Reformat idlelib colorizer (GH-25479)E-Paine2021-04-221-16/+20
* bpo-43917: Fix pure python equivalent for classmethod (GH-25544)Raymond Hettinger2021-04-222-2/+14
* bpo-39572: Address typo in CHANGELOG. (GH-24999)Simon Charette2021-04-221-1/+1
* bpo-38222: Check specifically for a drive, not just a colon (GH-25540)Steve Dower2021-04-231-2/+2
* bpo-35306: Avoid raising OSError from pathlib.Path.exists when passed an inva...Steve Dower2021-04-222-0/+3
* bpo-43915: Add PCbuild/blurb.bat to simplify Windows contributors (GH-25528)Steve Dower2021-04-221-0/+28
* bpo-38822: Fixed os.stat failing on inaccessible directories. (GH-25527)Steve Dower2021-04-222-2/+24
* bpo-43284: Update platform.win32_ver to use _syscmd_ver instead of sys.getwin...Shreyan Avigyan2021-04-223-11/+23
* bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)Raymond Hettinger2021-04-2210-21/+25
* Fix typo in the documentation (GH-24703)Alperen Serkan Aksöz2021-04-220-0/+0
* bpo-28724: Doc: Move socket.send_fds and socket.recv_fds docs to right sectio...Saiyang Gou2021-04-222-24/+27
* bpo-38659: Properly re-intialize module variables in test_enum (GH-25516)Ammar Askar2021-04-211-2/+13
* bpo-26227: Fixes decoding of host names on Windows from ANSI instead of UTF-8...Steve Dower2021-04-222-1/+3
* bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)Victor Stinner2021-04-2221-47/+97
* bpo-43756: Add new audit event for new arguments added to glob.glob (GH-25239)Saiyang Gou2021-04-213-1/+11
* bpo-43472: Ensure PyInterpreterState_New audit events are raised when called ...Steve Dower2021-04-213-3/+6
* bpo-40137: Move state lookups out of the critical path (GH-25492)Raymond Hettinger2021-04-211-28/+36
* bpo-40137: Optimize _PyType_GetModuleByDef() loop (GH-25505)Victor Stinner2021-04-221-5/+21
* bpo-40137: _PyType_GetModuleByDef() doesn't check tp_flags (GH-25504)Victor Stinner2021-04-211-15/+14
* doc: Sync some missing 3.10 changes with the What's New (GH-25503)Batuhan Taskaya2021-04-211-1/+27
* Fix typo in whatsnew/3.10.rst (GH-25498)JunWei Song2021-04-211-2/+2
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-2120-34/+870
* bpo-43859: Improve the error message for IndentationError exceptions (GH-25431)Pablo Galindo2021-04-216-554/+2185
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-2132-523/+436
* Update Sphinx directive for super from function to class (GH-25489)Géry Ogam2021-04-201-1/+1
* bpo-43888: Reduce coverage collection timeout to 1h40m in GHA (GH-25471)Sviatoslav Sydorenko2021-04-201-0/+1
* docs: clarify what patterns Path.glob accepts (GH-25486)Ned Batchelder2021-04-201-2/+3
* bpo-43799: Also define SSLv3_method() (GH-25481)Christian Heimes2021-04-202-8/+3
* Document that random.gauss is normal distribution (GH-24935)Joonas Paalasmaa2021-04-201-3/+3
* Improve the error message for choices(population, 10) (GH-25267)Raymond Hettinger2021-04-191-1/+9
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-1920-871/+34
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-1920-34/+871
* bpo-25460: Surround suggestions by quotes (GH-25473)Pablo Galindo2021-04-192-16/+16