diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-20 19:35:06 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-20 19:35:06 (GMT) |
commit | ab0ac27d24076a2a09e3d8de97055a2fc978709f (patch) | |
tree | b0d5a4be76eb6122b30ebbdd801c7f82bddec8b3 /Modules/_cursesmodule.c | |
parent | 679688e70d29fad62bb7a07e682ef6966c489445 (diff) | |
parent | 7e52705ee362001a8761461e9c4d49e3873568e0 (diff) | |
download | cpython-ab0ac27d24076a2a09e3d8de97055a2fc978709f.zip cpython-ab0ac27d24076a2a09e3d8de97055a2fc978709f.tar.gz cpython-ab0ac27d24076a2a09e3d8de97055a2fc978709f.tar.bz2 |
Issue #20315: Removed support for backward compatibility with early 2.x versions.
Removed backward compatibility alias curses.window.nooutrefresh which should
be removed in 2.3.
Diffstat (limited to 'Modules/_cursesmodule.c')
-rw-r--r-- | Modules/_cursesmodule.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index 9eaf09c..a1dc9eb 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -2087,8 +2087,6 @@ static PyMethodDef PyCursesWindow_Methods[] = { {"nodelay", (PyCFunction)PyCursesWindow_nodelay, METH_VARARGS}, {"notimeout", (PyCFunction)PyCursesWindow_notimeout, METH_VARARGS}, {"noutrefresh", (PyCFunction)PyCursesWindow_NoOutRefresh, METH_VARARGS}, - /* Backward compatibility alias -- remove in Python 2.3 */ - {"nooutrefresh", (PyCFunction)PyCursesWindow_NoOutRefresh, METH_VARARGS}, {"overlay", (PyCFunction)PyCursesWindow_Overlay, METH_VARARGS}, {"overwrite", (PyCFunction)PyCursesWindow_Overwrite, METH_VARARGS}, |