summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)Alexey Izbyshev2018-10-201-0/+2
* bpo-33594: Add deprecation info in inspect.py module (GH-7036)Matthias Bussonnier2018-10-191-0/+3
* bpo-34070: open() only checks for isatty if buffering < 0 (GH-8187)David Herberth2018-10-191-0/+2
* bpo-33947: dataclasses no longer can raise RecursionError in repr (GF9916)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-10-191-0/+1
* bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)Serhiy Storchaka2018-10-191-0/+2
* bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660)matthewbelisle-wf2018-10-191-0/+2
* bpo-31522: mailbox.get_string: pass `from_` parameter to `get_bytes` (#9857)Cheryl Sabella2018-10-191-0/+1
* bpo-34936: Fix TclError in tkinter.Spinbox.selection_element(). (GH-9760)Juliette Monsel2018-10-181-0/+2
* bpo-34765: Update the install-sh file (GH-9592)stratakis2018-10-181-0/+2
* bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924)Serhiy Storchaka2018-10-181-0/+3
* bpo-35011: Restore use of pyexpatns.h in libexpat (GH-9939)Gregory P. Smith2018-10-181-0/+4
* bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)Stéphane Wirtel2018-10-171-0/+1
* bpo-23420: Verify the value of '-s' when execute the CLI of cProfile (GH-9925)Stéphane Wirtel2018-10-171-0/+2
* bpo-34989: python-gdb.py: fix current_line_num() (GH-9889)Victor Stinner2018-10-151-0/+2
* bpo-34844: logging.Formatter enhancement - Ensure style and format string mat...BNMetrics2018-10-151-0/+6
* bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9...Serhiy Storchaka2018-10-141-0/+3
* bpo-34939: Allow annotated global names in module namespace (GH-9844)Pablo Galindo2018-10-141-0/+2
* bpo-34521: Add NEWS entry for changes in GH-9613 (GH-9850)Pablo Galindo2018-10-141-0/+3
* bpo-34941: Fix searching Element subclasses. (GH-9766)Serhiy Storchaka2018-10-141-0/+3
* bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-9837)Andrew Svetlov2018-10-131-0/+1
* bpo-16965: 2to3 now rewrites execfile() to open with 'rb'. (GH-8569)Zackery Spytz2018-10-131-0/+2
* bpo-22872: multiprocessing.Queue's put() and get() now raise ValueError if th...Zackery Spytz2018-10-131-0/+4
* bpo-34967: Sphinx is deprecating add_description_unit, use add_object_type (G...Stéphane Wirtel2018-10-131-0/+2
* bpo-23831: Add moveto method to the tkinter.Canvas widget. (GH-9768)Juliette Monsel2018-10-121-0/+2
* bpo-11233: Create availability directive for documentation (GH-9692)Cheryl Sabella2018-10-121-0/+2
* bpo-34900: Make TestCase.debug() work with subtests (GH-9707)Bruno Oliveira2018-10-121-0/+2
* bpo-34962: make doctest in Doc/ now passes, and is enforced in CI (GH-9806)Stéphane Wirtel2018-10-121-0/+1
* bpo-34922: Fix integer overflow in the digest() and hexdigest() methods (GH-9...Serhiy Storchaka2018-10-111-0/+3
* bpo-34022: Stop forcing of hash-based invalidation with SOURCE_DATE_EPOCH (GH...Elvis Pranskevichus2018-10-101-0/+3
* bpo-34926: Make mimetypes.guess_type accept os.PathLike objects (GH-9777)Mayank Asthana2018-10-101-0/+2
* bpo-34913: Document gzip command line interface (GH-9782)Stéphane Wirtel2018-10-101-0/+1
* bpo-23596: Use argparse for the command line of gzip (GH-9781)Stéphane Wirtel2018-10-091-0/+1
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)twisteroid ambassador2018-10-091-0/+2
* bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protection -O0...Victor Stinner2018-10-091-0/+1
* bpo-32680 add default "sock" on SMTP objects (#5345)Romuald Brunet2018-10-091-0/+1
* bpo-34758: add .wasm to recognized file extensions in mimetypes module (GH-9464)travisoneill2018-10-091-0/+2
* bpo-32174: Let .chm document display non-ASCII characters properly (GH-9758)animalize2018-10-081-0/+2
* bpo-31715 Add mimetype for extension .mjs (#3908)Bradley Meck2018-10-081-0/+1
* bpo-34911: Added support for secure websocket cookies (GH-9734)Paul Bailey2018-10-081-0/+3
* bpo-34829: Add missing selection_ methods to the Tkinter Spinbox. (GH-9617)Juliette Monsel2018-10-082-0/+4
* bpo-34925: Optimize common case for bisect() argument parsing (#9753)Raymond Hettinger2018-10-081-0/+1
* bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606)Zackery Spytz2018-10-061-0/+2
* bpo-34906: Doc: Fix typos (2) (GH-9735)Stéphane Wirtel2018-10-0633-54/+54
* bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)Zackery Spytz2018-10-061-0/+2
* bpo-28441: Ensure `.exe` suffix in `sys.executable` on MinGW and Cygwin (GH-4...E. M. Bray2018-10-051-0/+3
* bpo-34871: inspect: Don't pollute sys.modules (GH-9696)INADA Naoki2018-10-041-0/+2
* bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679)Elvis Pranskevichus2018-10-031-0/+1
* bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)Zackery Spytz2018-10-031-0/+2
* bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-8450)tzickel2018-10-021-0/+1
* bpo-30156: Remove property_descr_get() optimization (GH-9541)Victor Stinner2018-10-011-0/+4