summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-43682: Make staticmethod objects callable (GH-25117)Victor Stinner2021-04-111-0/+2
* bpo-42967: coerce bytes separator to string in urllib.parse_qs(l) (#24818)Ken Jin2021-04-111-0/+3
* Fix typo in 3.10.0a7.rst (GH-25340)Sergey B Kirpichev2021-04-111-1/+1
* bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)Dennis Sweeney2021-04-111-0/+1
* bpo-43772: Fix TypeVar.__ror__ (GH-25339)Jelle Zijlstra2021-04-111-0/+1
* bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298)Jelle Zijlstra2021-04-111-0/+3
* bpo-43764: Add match_args=False parameter to dataclass decorator and to make_...Eric V. Smith2021-04-111-0/+2
* bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)Victor Stinner2021-04-101-0/+6
* bpo-43478: Fix formatting of NEWS entry (GH-25335)Pablo Galindo2021-04-101-1/+6
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-101-0/+1
* bpo-43739: Add type declaration Doc/extending/extending.rst exampleShreyan Avigyan2021-04-101-0/+1
* bpo-43478: Restrict use of Mock objects as specs (GH-25326)Matthew Suozzo2021-04-101-0/+1
* bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)Christian Heimes2021-04-091-0/+1
* bpo-43682: @staticmethod inherits attributes (GH-25268)Victor Stinner2021-04-091-0/+5
* bpo-43788: Generate version specific _ssl_data.h (GH-25300)Christian Heimes2021-04-091-0/+4
* bpo-4379: Skip TLS 1.0/1.1 tests under OpenSSL 3.0.0 (GH-25304)Christian Heimes2021-04-091-0/+2
* bpo-43789: OpenSSL 3.0.0 Don't call passwd callback again in error case (GH-2...Christian Heimes2021-04-091-0/+2
* bpo-43778: Fix Sphinx glossary_search extension (GH-25286)Victor Stinner2021-04-081-0/+2
* bpo-43764: Fix `__match_args__` generation logic for dataclasses (GH-25284)Brandt Bucher2021-04-081-0/+2
* bpo-39899: os.path.expanduser(): don't guess other Windows users' home direct...Barney Gale2021-04-071-0/+3
* bpo-39906: Add follow_symlinks parameter to pathlib.Path.stat() and chmod() (...Barney Gale2021-04-071-0/+1
* bpo-43075: Fix ReDoS in urllib AbstractBasicAuthHandler (GH-24391)Yeting Li2021-04-071-0/+1
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-071-0/+2
* bpo-43567: Improved generated code refresh on Windows (GH-25120)Steve Dower2021-04-061-0/+1
* bpo-43755: Update docs to reflect that lambda is not allowed in `comp_if` sin...Saiyang Gou2021-04-061-0/+3
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-061-0/+2
* Fix blurb for bpo-43176. (GH-25215)Eric V. Smith2021-04-061-1/+1
* bpo-43745: Actually updates Windows release to OpenSSL 1.1.1k. (GH-25213)Steve Dower2021-04-061-0/+2
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-061-0/+2
* bpo-43176: Fix processing of empty dataclasses (GH-24484)Iurii Kemaev2021-04-061-0/+1
* bpo-42128: __match_args__ can't be a list anymore (GH-25203)Brandt Bucher2021-04-061-0/+1
* bpo-36470: Allow dataclasses.replace() to handle InitVars with default values...Zackery Spytz2021-04-051-0/+2
* Python 3.10.0a7v3.10.0a7Pablo Galindo2021-04-0588-279/+983
* bpo-43084: Return bool instead of int from curses.window.enclose() (GH-24398)Serhiy Storchaka2021-04-051-0/+2
* bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172)Dennis Sweeney2021-04-041-0/+1
* bpo-43720: Update import-related stdlib deprecation messages to say they will...Brett Cannon2021-04-031-0/+2
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-021-0/+1
* bpo-24160: Fix breakpoints persistence across multiple pdb sessions (GH-21989)Irit Katriel2021-04-021-0/+1
* bpo-31956: Add start and stop parameters to array.index() (GH-25059)Zackery Spytz2021-04-021-0/+2
* bpo-43688: Support the limited C API in debug mode (GH-25131)Victor Stinner2021-04-021-0/+13
* bpo-26053: Fix args echoed by pdb run command (#22033)Irit Katriel2021-04-011-0/+1
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-011-0/+3
* Disambiguate that -m also terminates the option list in the manpage. (GH-25100)Julien Palard2021-03-311-1/+2
* bpo-37945: Fix test_locale.test_getsetlocale_issue1813() (#25110)Victor Stinner2021-03-311-0/+2
* Document GH-24624Łukasz Langa2021-03-311-0/+3
* bpo-42225: IDLE - document two unix-related problems. (#25078)Terry Jan Reedy2021-03-311-0/+2
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-312-0/+7
* bpo-43399: Fix ElementTree.extend not working on iterators (GH-24751)Alex Prengère2021-03-302-0/+3
* bpo-41369: Finish updating the vendored libmpdec to version 2.5.1 (GH-24962)Antoine Pitrou2021-03-301-0/+2
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-301-0/+1