summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* GH-114847: Speed up `posixpath.realpath()` (#114848)Barney Gale2024-04-051-0/+1
* gh-116608: importlib.resources: Un-deprecate functional API & add subdirector...Petr Viktorin2024-04-051-0/+10
* gh-117494: extract the Instruction Sequence data structure into a separate fi...Irit Katriel2024-04-041-0/+1
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-041-0/+11
* gh-117467: Add preserving of mailbox owner on flush (GH-117510)Tony Mountifield2024-04-041-0/+2
* gh-117459: Keep the traceback in _convert_future_exc (#117460)rsp4jack2024-04-041-0/+1
* gh-117205: Increase chunksize when compiling pyc in parallel (#117206)Shantanu2024-04-031-0/+1
* gh-117267: Ensure DirEntry.stat().st_ctime still contains creation time durin...Steve Dower2024-04-031-0/+5
* gh-117431: Adapt str.find and friends to Argument Clinic (#117468)Erlend E. Aasland2024-04-031-2/+10
* GH-114847: Raise FileNotFoundError when getcwd() returns '(unreachable)' (#11...Barney Gale2024-04-031-0/+2
* gh-59215: unittest: restore _top_level_dir at end of discovery (GH-15242)Zackery Spytz2024-04-031-0/+3
* gh-117381: Improve error messages for ntpath.commonpath() (GH-117382)Nice Zombies2024-04-031-0/+1
* GH-70647: Deprecate strptime day of month parsing without a year present to a...Gregory P. Smith2024-04-031-0/+7
* gh-117431: Adapt bytes and bytearray .startswith() and .endswith() to Argumen...Erlend E. Aasland2024-04-031-0/+6
* gh-117431: Adapt str.startswith and str.endswith to Argument Clinic (#117466)Erlend E. Aasland2024-04-031-0/+2
* gh-117349: Micro-optimize a few `os.path` functions (#117350)Nice Zombies2024-04-022-0/+2
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-021-0/+4
* gh-109120: Fix syntax error in handlinh of incorrect star expressions (#117444)Grigoriev Semyon2024-04-021-0/+2
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-021-0/+1
* GH-117337: Deprecate `glob.glob0()` and `glob.glob1()`. (#117371)Barney Gale2024-04-011-0/+3
* gh-77714: Provide an async iterator version of as_completed (GH-22491)Justin Turner Arthur2024-04-011-0/+5
* gh-91565: Replace bugs.python.org links with Devguide/GitHub ones (GH-91568)Steve (Gadget) Barnes2024-04-011-0/+1
* gh-117348: Refactored RawConfigParser._read for similicity and comprehensibil...Jason R. Coombs2024-03-291-0/+2
* gh-66449: configparser: Add support for unnamed sections (#117273)Pedro Lacerda2024-03-291-0/+2
* gh-117110: Fix subclasses of typing.Any with custom constructors (#117111)傅立业(Chris Fu)2024-03-291-0/+1
* gh-117335: Handle non-iterables for `ntpath.commonpath` (GH-117336)Nice Zombies2024-03-281-0/+1
* gh-117294: Report DocTestCase as skipped if all examples in the doctest are s...Malcolm Smith2024-03-281-0/+2
* bpo-43848: explain optional argument mtime in gzip.py. (GH-25410)Joachim Wuttke2024-03-281-0/+3
* gh-117178: Recover lazy loading of self-referential modules (#117179)Chris Markiewicz2024-03-281-0/+2
* gh-117266: Fix crashes on user-created AST subclasses (GH-117276)Jelle Zijlstra2024-03-281-0/+2
* gh-117310: Remove extra DECREF on "no ciphers" error path in `_ssl._SSLContex...Gregory P. Smith2024-03-281-0/+4
* gh-114099: Add documentation for iOS platform (GH-117057)Russell Keith-Magee2024-03-282-0/+2
* gh-114099: Additions to standard library to support iOS (GH-117052)Russell Keith-Magee2024-03-281-0/+1
* gh-89739: gh-77140: Support zip64 in zipimport (GH-94146)Tim Hatch2024-03-281-0/+1
* gh-99108: Update and check HACL* version information (GH-117295)Seth Michael Larson2024-03-271-4/+4
* gh-71042: Add `platform.android_ver` (#116674)Malcolm Smith2024-03-271-0/+2
* gh-117225: doctest: only print "and X failed" when non-zero, don't pluralise ...Hugo van Kemenade2024-03-271-0/+2
* gh-113548: Allow CLI arguments to `pdb -m` (#113557)Tian Gao2024-03-271-0/+1
* gh-115775: Compiler adds __static_attributes__ field to classes (#115913)Irit Katriel2024-03-261-0/+3
* gh-97901 add missing text/rtf to mimetypes (GH-97902)Antonio2024-03-261-0/+1
* gh-98966: Handle stdout=subprocess.STDOUT (GH-98967)Paulo Neves2024-03-261-0/+2
* gh-66543: Fix mimetype.guess_type() (GH-117217)Serhiy Storchaka2024-03-261-0/+4
* GH-117108: Set the "old space bit" to "visited" for all young objects (#117213)Mark Shannon2024-03-261-0/+3
* bpo-24612: Improve syntax error for 'not' after an operator (GH-28170)Pablo Galindo Salgado2024-03-261-0/+2
* gh-115627: Fix PySSL_SetError handling SSL_ERROR_SYSCALL (GH-115628)yevgeny hong2024-03-261-0/+2
* gh-83434: Disable XML in regrtest when -R option is used (#117232)Victor Stinner2024-03-261-0/+3
* gh-117187: Fix XML tests for vanilla Expat <2.6.0 (GH-117203)Sebastian Pipping2024-03-261-0/+1
* gh-99108: Refresh HACL*; update modules accordingly; fix namespacing (GH-117237)Jonathan Protzenko2024-03-262-32/+38
* gh-109870: Dataclasses: batch up exec calls (gh-110851)Eric V. Smith2024-03-251-0/+3
* gh-117114: Make os.path.isdevdrive available on all platforms (GH-117115)Nice Zombies2024-03-251-0/+1