COMMITS
/ Modules/_cursesmodule.c July 7, 2022
K
GH-94644: fix test_curses ref leak (GH-94647)
Kumar Aditya committed
February 8, 2022
January 21, 2022
V
bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)
Victor Stinner committed
December 12, 2021
December 10, 2021
T
bpo-46000: Improve NetBSD curses compatibility (GH-29947)
Thomas Klausner committed
October 22, 2021
C
bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)
Christian Heimes committed
September 9, 2021
S
bpo-45067 - Verify the version of ncurses for extended color support feature usage. (GH-28260)
Senthil Kumaran committed
July 30, 2021
N
Update URLs in comments and metadata to use HTTPS (GH-27458)
Noah Kantrowitz committed
May 3, 2021
P
bpo-43916: Move the _PyStructSequence_InitType function to the internal API (GH-25854)
Pablo Galindo committed
April 30, 2021
V
bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)
Victor Stinner committed
April 5, 2021
S
bpo-43084: Return bool instead of int from curses.window.enclose() (GH-24398)
Serhiy Storchaka committed
February 2, 2021
P
bpo-43108: Fix a reference leak in the curses module (GH-24420)
Pablo Galindo committed
January 22, 2021
H
bpo-41798: Allocate the _curses._C_API on the heap memory (GH-24186)
Hai Shi committed
January 14, 2021
Z
bpo-39273: Expose BUTTON5_* constants in the curses module if available (GH-17996)
Zackery Spytz committed
January 5, 2021
S
bpo-42681: Fix test_curses failures related to color pairs (GH-24089)
Serhiy Storchaka committed
January 3, 2021
S
bpo-42681: Fix range checks for color and pair numbers in curses (GH-23874)
Serhiy Storchaka committed
December 1, 2020
V
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner committed
October 27, 2020
V
bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)
Victor Stinner committed
August 4, 2020
H
bpo-36982: Add support for extended color functions in ncurses 6.1 (GH-17536)
Hans Petter Jansson committed
May 11, 2020
V
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner committed
April 12, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472)
Serhiy Storchaka committed
April 7, 2020
V
bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)
Victor Stinner committed
March 24, 2020
D
bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)
Dong-hee Na committed
March 3, 2020
B
bpo-39802: Only expose set_escdelay and set_tabsize when curses extensions are activated (GH-18705)
Batuhan Taşkaya committed
February 7, 2020
V
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner committed
November 17, 2019
Z
bpo-36589: Fix the error handling in curses.update_lines_cols(). (GH-12766)
Zackery Spytz committed
October 31, 2019
A
bpo-38312: Add curses.{get,set}_escdelay and curses.{get,set}_tabsize. (GH-16938)
Anthony Sottile committed
September 14, 2019
S
bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933)
Serhiy Storchaka committed
August 14, 2019
V
bpo-37738: Fix curses addch(str, color_pair) (GH-15071)
Victor Stinner committed
July 31, 2019
A
bpo-37695: Correct unget_wch error message. (GH-14986)
Anthony Sottile committed
July 8, 2019
J
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
November 27, 2018
S
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka committed
S
bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)
Serhiy Storchaka committed
October 30, 2018
S
bpo-31680: Add curses.ncurses_version. (GH-4217)
Serhiy Storchaka committed
June 23, 2018
X
suppress compiler warnings in _cursesmodule.c (#7860)
Xiang Zhang committed
May 10, 2018
S
bpo-20171: Convert the _curses and _curses_panel modules to Argument Clinic. (GH-4251)
Serhiy Storchaka committed
December 20, 2017
S
correct the typos (#4950)
Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) committed
November 11, 2017
S
Add the const qualifier to "char *" variables that refer to literal strings. (#4370)
Serhiy Storchaka committed
November 1, 2017
S
bpo-27666: Fixed stack corruption in curses.box() and curses.ungetmouse(). (#4220)
Serhiy Storchaka committed
S
bpo-15037: Add a workaround for getkey() in curses for ncurses 5.7 and earlier. (#3826)
Serhiy Storchaka committed
S
bpo-31919: Fix building the curses module on OpenIndiana. (#4211)
Serhiy Storchaka committed
M
bpo-25720: Fix the method for checking pad state of curses WINDOW (#4164)
Masayuki Yamamoto committed
October 31, 2017
S
bpo-31891: Fix building the curses module on NetBSD. (#4165)
Serhiy Storchaka committed
June 28, 2017
S
[security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)
Serhiy Storchaka committed
June 16, 2017
X
bpo-30176: Add missing curses cell attributes constants (GH-1302)
Xiang Zhang committed
April 26, 2017
E
bpo-30101: Add support for curses.A_ITALIC. (#1015)
Eijebong committed
March 23, 2017
S
Use NULL rather than 0. (#778)
Serhiy Storchaka committed
March 2, 2017
C
bpo-29176 Use tmpfile() in curses module (#235)
Christian Heimes committed
February 12, 2017
V
bpo-29176: Fix name of the _curses.window class (#52)
Victor Stinner committed