summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-10-31 09:13:48 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2019-10-31 09:13:48 (GMT)
commitb32cb97bce472dad337c6b2f071883f6234e21d8 (patch)
treee686243c05fbc57f9de6be1bd7fefde38d589fb6 /Misc
parentb15100fe7def8580c78ed16f0bb4b72b2ae7af3f (diff)
downloadcpython-b32cb97bce472dad337c6b2f071883f6234e21d8.zip
cpython-b32cb97bce472dad337c6b2f071883f6234e21d8.tar.gz
cpython-b32cb97bce472dad337c6b2f071883f6234e21d8.tar.bz2
bpo-38312: Add curses.{get,set}_escdelay and curses.{get,set}_tabsize. (GH-16938)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-10-26-14-42-20.bpo-38312.e_FVWh.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-26-14-42-20.bpo-38312.e_FVWh.rst b/Misc/NEWS.d/next/Library/2019-10-26-14-42-20.bpo-38312.e_FVWh.rst
new file mode 100644
index 0000000..2a1800f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-10-26-14-42-20.bpo-38312.e_FVWh.rst
@@ -0,0 +1,3 @@
+Add :func:`curses.get_escdelay`, :func:`curses.set_escdelay`,
+:func:`curses.get_tabsize`, and :func:`curses.set_tabsize` functions -
+by Anthony Sottile.