summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...Miss Islington (bot)2019-08-292-0/+3
* [3.8] bpo-37950: Fix ast.dump() when call with incompletely initialized node....Serhiy Storchaka2019-08-291-0/+1
* bpo-36871: Ensure method signature is used when asserting mock calls to a met...Miss Islington (bot)2019-08-291-0/+3
* bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit t...Miss Islington (bot)2019-08-291-0/+3
* bpo-34775: Return NotImplemented in PurePath division. (GH-9509) (GH-15172)Miss Islington (bot)2019-08-291-0/+3
* bpo-18378: Recognize "UTF-8" as a valid name in locale._parse_localename (GH-...Miss Islington (bot)2019-08-291-0/+1
* [3.8] bpo-37482: Fix email address name with encoded words and special chars ...bsiem2019-08-291-0/+1
* closes bpo-37965: Fix compiler warning of distutils CCompiler.test_function. ...Miss Islington (bot)2019-08-281-0/+1
* bpo-36582: Make collections.UserString.encode() return bytes, not str (GH-131...Miss Islington (bot)2019-08-282-0/+2
* bpo-37951: Lift subprocess's fork() restriction (GH-15544)Miss Islington (bot)2019-08-271-0/+2
* bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538)Miss Islington (bot)2019-08-271-0/+1
* bpo-37925: Mention --embed in python-config usage (GH-15458)Miss Islington (bot)2019-08-261-1/+1
* bpo-37664: Update ensurepip bundled wheels, again (GH-15483)Steve Dower2019-08-261-0/+1
* [3.8] bpo-37947: Adjust correctly the recursion level in symtable for named e...Pablo Galindo2019-08-261-0/+2
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Miss Islington (bot)2019-08-261-0/+1
* [3.8] bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant...Miss Islington (bot)2019-08-261-0/+3
* bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489)Miss Islington (bot)2019-08-261-0/+1
* bpo-37824: Properly handle user input warnings in IDLE shell. (GH-15500)Miss Islington (bot)2019-08-261-0/+2
* [3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (G...Nick Coghlan2019-08-251-0/+7
* bpo-37929: IDLE: avoid Squeezer-related config dialog crashes (GH-15452)Miss Islington (bot)2019-08-251-0/+1
* [3.8] bpo-37942: Improve argument clinic float converter (GH-15470) (GH-15480)Raymond Hettinger2019-08-251-0/+1
* Fix typo and rearrange words in IDLE news item (GH-15471)Miss Islington (bot)2019-08-241-1/+1
* bpo-37798: Test both Python and C versions in test_statistics.py (GH-15453) (...Miss Islington (bot)2019-08-241-0/+2
* bpo-37772: fix zipfile.Path.iterdir() outputs (GH-15170) (#15461)Miss Islington (bot)2019-08-241-0/+1
* [3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320)...Serhiy Storchaka2019-08-241-0/+3
* bpo-28269: Replace strcasecmp with system function _stricmp. (GH-13095)Miss Islington (bot)2019-08-241-0/+1
* bpo-29535: Remove promize about hash randomization of datetime objects. (GH-1...Miss Islington (bot)2019-08-241-1/+1
* bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266) (GH-...Miss Islington (bot)2019-08-231-0/+1
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)Victor Stinner2019-08-231-0/+2
* bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389)Miss Islington (bot)2019-08-231-0/+1
* bpo-26589: Add http status code 451 (GH-15413) (GH-15436)Miss Islington (bot)2019-08-231-0/+2
* [3.8] Fix typo (inifite -> infinite) (GH-15429)GeeTransit2019-08-231-1/+1
* bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415) (GH-15420)Victor Stinner2019-08-231-0/+1
* bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)Miss Islington (bot)2019-08-231-0/+3
* bpo-36311: Fixes decoding multibyte characters around chunk boundaries and im...Miss Islington (bot)2019-08-211-0/+2
* bpo-37834: Normalise handling of reparse points on Windows (GH-15370)Steve Dower2019-08-212-0/+4
* bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287)Miss Islington (bot)2019-08-211-0/+1
* Fix difflib `?` hint in diff output when dealing with tabs (GH-15201)Miss Islington (bot)2019-08-211-0/+2
* bpo-37868: Improve is_dataclass for instances. (GH-15325)Miss Islington (bot)2019-08-201-0/+3
* bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-1...Miss Islington (bot)2019-08-171-0/+1
* bpo-37256: Wording in Request class docs (GH-14792)Miss Islington (bot)2019-08-161-0/+1
* bpo-37642: Update acceptable offsets in timezone (GH-14878) (#15227)Paul Ganssle2019-08-152-0/+4
* bpo-21131: Fix faulthandler.register(chain=True) stack (GH-15276)Miss Islington (bot)2019-08-141-0/+4
* bpo-37811: FreeBSD, OSX: fix poll(2) usage in sockets module (GH-15202)Miss Islington (bot)2019-08-142-0/+5
* bpo-37849: IDLE: fix completion window positioning above line (GH-15267)Miss Islington (bot)2019-08-141-0/+2
* [3.8] bpo-37531: Fix regrtest timeout for subprocesses (GH-15072) (GH-15279)Victor Stinner2019-08-141-0/+2
* bpo-37738: Fix curses addch(str, color_pair) (GH-15071)Miss Islington (bot)2019-08-141-0/+2
* bpo-25172: Raise appropriate ImportError msg when crypt module used on Window...Miss Islington (bot)2019-08-131-0/+1
* [3.8] bpo-37354: Make Powershell Activate.ps1 script static to allow for sign...Miss Islington (bot)2019-08-121-0/+1
* bpo-37819: Add Fraction.as_integer_ratio() (GH-15212) (GH-15215)Miss Islington (bot)2019-08-111-0/+2