summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-04-05 13:50:24 (GMT)
committerGitHub <noreply@github.com>2021-04-05 13:50:24 (GMT)
commitb1dc1aacf8b0f319024a1a3ce91d395956537c11 (patch)
treed37c2b41f5fd1af45f9e27d66114c7f6b133fe21 /Misc
parentc8e5eb904e12010d2302364e1037c24a30f5e241 (diff)
downloadcpython-b1dc1aacf8b0f319024a1a3ce91d395956537c11.zip
cpython-b1dc1aacf8b0f319024a1a3ce91d395956537c11.tar.gz
cpython-b1dc1aacf8b0f319024a1a3ce91d395956537c11.tar.bz2
bpo-43084: Return bool instead of int from curses.window.enclose() (GH-24398)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-01-31-17-31-13.bpo-43084.i8nLpK.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-01-31-17-31-13.bpo-43084.i8nLpK.rst b/Misc/NEWS.d/next/Library/2021-01-31-17-31-13.bpo-43084.i8nLpK.rst
new file mode 100644
index 0000000..bdab5d9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-01-31-17-31-13.bpo-43084.i8nLpK.rst
@@ -0,0 +1,2 @@
+:func:`curses.window.enclose` returns now ``True`` or ``False`` (as was
+documented) instead of ``1`` or ``0``.