summaryrefslogtreecommitdiffstats
path: root/Modules/_cursesmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-46000: Improve NetBSD curses compatibility (GH-29947) (GH-30023)Miss Islington (bot)2021-12-101-2/+2
* [3.9] Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27480)Łukasz Langa2021-07-301-1/+1
* bpo-43108: Fix a reference leak in the curses module (GH-24420)Miss Islington (bot)2021-02-031-1/+3
* [3.9] bpo-42681: Fix test_curses failures related to color pairs (GH-24089) (...Serhiy Storchaka2021-01-051-8/+18
* [3.9] bpo-42681: Fix range checks for color and pair numbers in curses (GH-23...Serhiy Storchaka2021-01-031-28/+16
* bpo-39465: Don't access directly _Py_Identifier members (GH-20043)Victor Stinner2020-05-111-2/+2
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-121-4/+4
* bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)Victor Stinner2020-04-071-1/+1
* bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)Dong-hee Na2020-03-241-2/+3
* bpo-39802: Only expose set_escdelay and set_tabsize when curses extensions ar...Batuhan Taşkaya2020-03-031-0/+6
* bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)Victor Stinner2020-02-071-1/+1
* bpo-36589: Fix the error handling in curses.update_lines_cols(). (GH-12766)Zackery Spytz2019-11-171-8/+21
* bpo-38312: Add curses.{get,set}_escdelay and curses.{get,set}_tabsize. (GH-16...Anthony Sottile2019-10-311-0/+84
* bpo-37206: Unrepresentable default values no longer represented as None. (GH-...Serhiy Storchaka2019-09-141-2/+2
* bpo-37738: Fix curses addch(str, color_pair) (GH-15071)Victor Stinner2019-08-141-3/+15
* bpo-37695: Correct unget_wch error message. (GH-14986)Anthony Sottile2019-07-311-2/+2
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-081-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-2/+2
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-271-1/+1
* bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)Serhiy Storchaka2018-11-271-6/+6
* bpo-31680: Add curses.ncurses_version. (GH-4217)Serhiy Storchaka2018-10-301-0/+77
* suppress compiler warnings in _cursesmodule.c (#7860)Xiang Zhang2018-06-231-4/+4
* bpo-20171: Convert the _curses and _curses_panel modules to Argument Clinic. ...Serhiy Storchaka2018-05-101-1184/+2238
* correct the typos (#4950)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-201-2/+2
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-111-2/+2
* bpo-27666: Fixed stack corruption in curses.box() and curses.ungetmouse(). (#...Serhiy Storchaka2017-11-011-12/+26
* bpo-15037: Add a workaround for getkey() in curses for ncurses 5.7 and earlie...Serhiy Storchaka2017-11-011-2/+10
* bpo-31919: Fix building the curses module on OpenIndiana. (#4211)Serhiy Storchaka2017-11-011-2/+4
* bpo-25720: Fix the method for checking pad state of curses WINDOW (#4164)Masayuki Yamamoto2017-11-011-8/+16
* bpo-31891: Fix building the curses module on NetBSD. (#4165)Serhiy Storchaka2017-10-311-33/+40
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-281-0/+10
* bpo-30176: Add missing curses cell attributes constants (GH-1302)Xiang Zhang2017-06-161-3/+5
* bpo-30101: Add support for curses.A_ITALIC. (#1015)Eijebong2017-04-261-0/+3
* Use NULL rather than 0. (#778)Serhiy Storchaka2017-03-231-1/+1
* bpo-29176 Use tmpfile() in curses module (#235)Christian Heimes2017-03-021-37/+15
* bpo-29176: Fix name of the _curses.window class (#52)Victor Stinner2017-02-121-1/+1
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-40/+22
* Initialize variables to fix compiler warningsVictor Stinner2016-12-091-1/+1
* Issue #28549: Fixed segfault in curses's addch() with ncurses6.Serhiy Storchaka2016-10-301-8/+9
|\
| * Issue #28549: Fixed segfault in curses's addch() with ncurses6.Serhiy Storchaka2016-10-301-8/+9
* | Issue #28526: Use PyUnicode_AsEncodedString() instead ofSerhiy Storchaka2016-10-271-2/+2
|\ \ | |/
| * Issue #28526: Use PyUnicode_AsEncodedString() instead ofSerhiy Storchaka2016-10-271-2/+2
* | Avoid calling functions with an empty string as format stringVictor Stinner2016-09-061-1/+1
|/
* merge 3.4Benjamin Peterson2016-08-161-0/+8
|\
| * fail when negative values are passed to instr()Benjamin Peterson2016-08-161-0/+8
* | merge 3.4Benjamin Peterson2016-08-141-0/+8
|\ \ | |/
| * do not allow reading negative values with getstr()Benjamin Peterson2016-08-141-0/+8
* | Issue #4254: Adds _curses.update_lines_cols() Patch by Arnon YaariSteve Dower2015-04-151-0/+10
* | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.Larry Hastings2015-04-141-2/+3
* | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-67/+3