summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
Commit message (Expand)AuthorAgeFilesLines
* bpo-11015: Update test.support documentation (GH-5610)Cheryl Sabella2018-02-111-0/+1
* bpo-32792: Preserve mapping order in ChainMap() (GH-5586)Raymond Hettinger2018-02-111-0/+1
* bpo-32800: Update link to w3c doc for xml default namespaces (GH-5609)sblondon2018-02-101-0/+1
* bpo-30688: Support \N{name} escapes in re patterns. (GH-5588)Serhiy Storchaka2018-02-091-0/+2
* bpo-30157: Fix csv.Sniffer.sniff() regex pattern. (GH-5601)Serhiy Storchaka2018-02-091-0/+2
* bpo-32775: Fix regular expression warnings in fnmatch. (#5583)Serhiy Storchaka2018-02-091-0/+5
* bpo-32585: Add tkinter.ttk.Spinbox. (#5221)Alan D Moore2018-02-091-0/+1
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560)Alexey Izbyshev2018-02-061-0/+3
* bpo-32749: Make dbm.dumb databases more cosistent with other dbm databases. (...Serhiy Storchaka2018-02-051-0/+3
* bpo-8722: Document __getattr__ behavior with AttributeError in property (GH-4...Cheryl Sabella2018-02-051-0/+2
* bpo-32765: Update configdialog General tab create page docstring (GH-5529)Cheryl Sabella2018-02-041-0/+1
* bpo-10544: Disallow "yield" in comprehensions and generator expressions. (GH-...Serhiy Storchaka2018-02-041-0/+2
* bpo-32691: Use mod_spec.parent when running modules with pdb (GH-5474)Mario Corchero2018-02-031-0/+1
* bpo-32734: Fix asyncio.Lock multiple acquire safety issue (GH-5466)Bar Harel2018-02-021-0/+2
* bpo-32614: Modify re examples to use a raw string to prevent warning (GH-5265)Cheryl Sabella2018-02-021-0/+3
* bpo-32303 - Consistency fixes for namespace loaders (#5481)Barry Warsaw2018-02-022-0/+3
* Revert "bpo-31356: Add context manager to temporarily disable GC GH-5495Yury Selivanov2018-02-021-0/+2
* Implement TimerHandle.when() (#5473)Andrew Svetlov2018-02-011-0/+1
* bpo-32711: Fix warnings for Python/ast_unparse.c (#5426)Stéphane Wirtel2018-02-011-0/+1
* [3.8] bpo-31508: Remove support of arguments in tkinter.ttk.Treeview.selectio...Serhiy Storchaka2018-02-011-0/+3
* bpo-32722: Remove useless example in the Classes tutorial (#5446)Stéphane Wirtel2018-02-011-0/+2
* Update NEWS, docs, and patchlevel for 3.7.0b1Ned Deily2018-01-3187-187/+0
* bpo-32726: Build macOS 10.9+ installer with private copy of Tcl/Tk 8.6Ned Deily2018-01-311-1/+1
* bpo-32583: Fix possible crashing in builtin Unicode decoders (#5325)Xiang Zhang2018-01-311-0/+2
* bpo-30693: zip+tarfile: sort directory listing (#2263)Bernhard M. Wiedemann2018-01-312-0/+2
* bpo-32727: smtplib's SMTP.send_message behaves differently with from_addr and...Stéphane Wirtel2018-01-311-0/+1
* bpo-32726: macOS installer and framework enhancements and changes for 3.7.0 (...Ned Deily2018-01-301-0/+4
* bpo-28440: Don't add /Library/Python/3.x/site-packages to sys.path (#5445)Ned Deily2018-01-301-0/+2
* bpo-32724: Fix references to commands in Doc/pdb.rst (GH-5444)Stéphane Wirtel2018-01-301-0/+2
* bpo-22908: Add seek and tell functionality to ZipExtFile (GH-4966)John Jolly2018-01-301-0/+2
* bpo-31961: subprocess now accepts path-like args (GH-4329)Anders Lorentsen2018-01-301-0/+4
* bpo-32102 Add "capture_output=True" to subprocess.run (GH-5149)Bo Bayles2018-01-301-0/+1
* closes bpo-32721: do not fail test_hashlib if _md5 isn't available (GH-5441)Benjamin Peterson2018-01-301-0/+1
* bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (...Stéphane Wirtel2018-01-301-0/+2
* bpo-21417: Add compresslevel= to the zipfile module (GH-5385)Bo Bayles2018-01-301-0/+1
* bpo-25942: make subprocess more graceful on ^C (GH-5026)Gregory P. Smith2018-01-301-0/+6
* bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh...Eric Snow2018-01-301-0/+4
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-301-0/+1
* bpo-28134: Auto-detect socket values from file descriptor (#1349)Christian Heimes2018-01-291-0/+2
* bpo-31356: Add context manager to temporarily disable GC (GH-4224)Pablo Galindo2018-01-291-0/+3
* bpo-32703: Fix coroutine resource warning in case where there's an error (GH-...Yury Selivanov2018-01-291-0/+2
* bpo-27931: Fix email address header parsing error (#5329)jayyyin2018-01-291-0/+1
* bpo-25988: Deprecate exposing collections.abc in collections GH-5414Raymond Hettinger2018-01-291-0/+2
* bpo-28414: ssl module idna test (#5395)Christian Heimes2018-01-291-0/+3
* bpo-31429: Define TLS cipher suite on build time (#3532)Christian Heimes2018-01-291-0/+4
* bpo-20891: Py_Initialize() now creates the GIL (#4700)Victor Stinner2018-01-291-0/+3
* bpo-28685: Optimize sorted() list.sort() with type-specialized comparisons (#...embg2018-01-291-0/+2
* bpo-20104: Expose `posix_spawn` in the os module (GH-5109)Pablo Galindo2018-01-291-0/+1
* bpo-32650: Add native coroutine support to bdb when stepping over line (GH-5400)Pablo Galindo2018-01-291-0/+2
* bpo-32373: Add socket.getblocking() method. (#4926)Yury Selivanov2018-01-281-0/+1