diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-30 11:22:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 11:22:42 (GMT) |
commit | b232df9197a19e78d0e2a751e56e0e62547354ec (patch) | |
tree | 851cc39c2b33019a4c88cf828349eccdcb892b7f /Doc/whatsnew | |
parent | 3e429dcc242e48fa4cbb1a91cf7c416c37b97b4e (diff) | |
download | cpython-b232df9197a19e78d0e2a751e56e0e62547354ec.zip cpython-b232df9197a19e78d0e2a751e56e0e62547354ec.tar.gz cpython-b232df9197a19e78d0e2a751e56e0e62547354ec.tar.bz2 |
bpo-31680: Add curses.ncurses_version. (GH-4217)
Use curses.ncurses_version for conditionally skipping a test.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 758d32e..02391de 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -152,6 +152,15 @@ now return ``False`` instead of raising :exc:`ValueError` or its subclasses characters or bytes unrepresentable at the OS level. (Contributed by Serhiy Storchaka in :issue:`33721`.) + +ncurses +------- + +Added a new variable holding structured version information for the +underlying ncurses library: :data:`~curses.ncurses_version`. +(Contributed by Serhiy Storchaka in :issue:`31680`.) + + pathlib ------- |