summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-41561: Add workaround for Ubuntu's custom security level (GH-24915)Miss Islington (bot)2021-03-181-0/+1
* bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843)Miss Islington (bot)2021-03-171-0/+4
* bpo-43285 Make ftplib not trust the PASV response. (GH-24838)Miss Islington (bot)2021-03-151-0/+8
* bpo-43199: Briefly explain why no goto (GH-24852)Miss Islington (bot)2021-03-151-0/+1
* bpo-27820: Fix AUTH LOGIN logic in smtplib.SMTP (GH-24118) (#24832)Miss Islington (bot)2021-03-131-0/+8
* bpo-43423 Fix IndexError in subprocess _communicate function (GH-24777)Miss Islington (bot)2021-03-121-0/+2
* [3.9] bpo-43439: Add audit hooks for gc functions (GH-24794). (GH-24811)Pablo Galindo2021-03-101-0/+2
* bpo-43332: Buffer proxy connection setup packets before sending. (GH-24780)Miss Islington (bot)2021-03-081-0/+3
* [3.9] bpo-43406: Fix possible race condition where ``PyErr_CheckSignals`` tri...Miss Islington (bot)2021-03-061-0/+2
* bpo-43407: Clarify comparisons of time.monotonic() et al results (GH-24757)Miss Islington (bot)2021-03-061-0/+4
* [3.9] bpo-37193: Remove thread objects which finished process its request (GH...Miss Islington (bot)2021-03-041-0/+2
* [3.9] bpo-42782: Fail fast for permission errors in shutil.move() (GH-24001) ...Senthil Kumaran2021-03-031-0/+2
* bpo-42500: Fix recursion in or after except (GH-23568) (#24501)Mark Shannon2021-03-021-0/+2
* bpo-41837: Update macOS installer build to use OpenSSL 1.1.1j. (GH-24677)Miss Islington (bot)2021-03-011-0/+1
* bpo-43316: gzip: CLI uses non-zero return code on error. (GH-24647)Miss Islington (bot)2021-02-261-0/+3
* bpo-43283: Add IDLE doc paragraph about print speed (GH-24615)Miss Islington (bot)2021-02-241-0/+3
* bpo-36346: Document removal schedule of deprecate APIs (GH-20879)Miss Islington (bot)2021-02-221-0/+2
* bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)Inada Naoki2021-02-221-0/+2
* [3.9] bpo-43288: Fix bug in test_importlib test. (GH-24616)Neil Schemenauer2021-02-211-0/+2
* bpo-27646: Say that 'yield from' expression can be any iterable (GH-24595)Miss Islington (bot)2021-02-211-0/+2
* Python 3.9.2v3.9.2Łukasz Langa2021-02-192-1/+7
* bpo-43155: Add PyCMethod_New to PC/python3.def (GH-24500) (GH-24554)Zackery Spytz2021-02-171-0/+1
* Python 3.9.2rc1v3.9.2rc1Łukasz Langa2021-02-1673-162/+746
* bpo-42819, readline: Disable bracketed paste (GH-24108) (GH-24545)Miss Islington (bot)2021-02-162-0/+9
* [3.9] bpo-42967: only use '&' as a query string separator (GH-24297) (#24528)Senthil Kumaran2021-02-151-0/+1
* bpo-43174: Windows: Use /utf-8 compiler option. (GH-24498)Miss Islington (bot)2021-02-121-0/+1
* bpo-43102: Set namedtuple __new__'s internal builtins to a dict. (GH-24439) ...Miss Islington (bot)2021-02-051-0/+2
* bpo-43108: Fix a reference leak in the curses module (GH-24420)Miss Islington (bot)2021-02-031-0/+1
* bpo-41748: Handles unquoted attributes with commas (GH-24072)Miss Islington (bot)2021-02-011-0/+2
* bpo-42504: Ensure that get_config_var('MACOSX_DEPLOYMENT_TARGET') is a string...Miss Islington (bot)2021-02-011-0/+3
* [3.9] bpo-41604: Don't decrement the reference count of the previous user_ptr...Serhiy Storchaka2021-01-311-0/+2
* bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed wchar_t...Miss Islington (bot)2021-01-311-0/+2
* bpo-43008: Add 'Patch by Ken Hilton' (GH-24370) (#24374)Miss Islington (bot)2021-01-291-0/+1
* bpo-23544: Disable IDLE Stack Viewer when running user code (GH-17163)Miss Islington (bot)2021-01-281-0/+2
* bpo-29076: Add fish support to macOS installer (GH-23302) (GH-23937)Miss Islington (bot)2021-01-281-0/+1
* bpo-43008: Make IDLE respect sys.excepthook (GH-24302)Miss Islington (bot)2021-01-271-0/+1
* [3.9] bpo-42383: pdb: do not fail to restart the target if the current direct...Andrey Bienkowski2021-01-261-0/+2
* [3.9] bpo-42384: pdb: correctly populate sys.path[0] (GH-23338) (#24321)Andrey Bienkowski2021-01-251-0/+1
* [3.9] bpo-33289: Return RGB triplet of ints instead of floats from tkinter.co...Serhiy Storchaka2021-01-251-0/+2
* bpo-40304: Correct type(name, bases, dict) doc (GH-19553)Miss Islington (bot)2021-01-221-0/+2
* bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-241...cptpcrd2021-01-211-0/+1
* bpo-42005: profile and cProfile catch BrokenPipeError (GH-22643)Miss Islington (bot)2021-01-201-0/+2
* closes bpo-42938: Replace snprintf with Python unicode formatting in ctypes p...Miss Islington (bot)2021-01-181-0/+2
* bpo-42944 Fix Random.sample when counts is not None (GH-24235) (GH-24243)Miss Islington (bot)2021-01-181-0/+1
* [3.9] bpo-42163, bpo-42189, bpo-42659: Support uname_tuple._replace (for all ...Jason R. Coombs2021-01-161-0/+1
* bpo-42931: randbytes missing from random.__all__ (GH-24219) (GH-24225)Miss Islington (bot)2021-01-151-0/+1
* bpo-33065: Fix problem debugging user classes with __repr__ method (GH-24183)Miss Islington (bot)2021-01-101-0/+1
* [3.9] bpo-42851: [Enum] remove brittle __init_subclass__ support (GH-24154) (...Ethan Furman2021-01-071-0/+1
* [3.9] bpo-42811: Update importlib.utils.resolve_name() docs to use __spec__.p...Yair Frid2021-01-071-0/+2
* bpo-42584: Update Windows installer to use SQLite 3.34.0 (GH-23675)Steve Dower2021-01-061-0/+1