summaryrefslogtreecommitdiff
path: root/Modules/_cursesmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-3/+3
* correct the typos (GH-4950) (#4952)Miss Islington (bot)2017-12-211-2/+2
* Fix bpo-27666 backporting error in _cursesmodule.c (#4305)Serhiy Storchaka2017-11-071-2/+2
* bpo-27666: Fixed stack corruption in curses.box() and curses.ungetmouse(). (G...Miss Islington (bot)2017-11-011-12/+26
* bpo-31919: Fix building the curses module on OpenIndiana. (GH-4211) (#4216)Miss Islington (bot)2017-11-011-2/+4
* bpo-25720: Fix the method for checking pad state of curses WINDOW (GH-4164) (...Miss Islington (bot)2017-11-011-8/+16
* [2.7] bpo-31891: Fix building the curses module on NetBSD. (GH-4165). (#4194)Serhiy Storchaka2017-10-311-33/+40
* Issue #28998: More APIs now support longs as well as ints.Serhiy Storchaka2016-12-271-3/+11
* fail when negative values are passed to instr()Benjamin Peterson2016-08-151-0/+8
* do not allow reading negative values with getstr()Benjamin Peterson2016-08-131-0/+8
* #8862: Fix curses cleanup with getchar is interrupted by a signal.R David Murray2013-03-191-1/+3
* - Issue #7567: Don't call `setupterm' twice.Matthias Klose2010-07-301-1/+1
* reindent _cursesmodule.cVictor Stinner2010-05-151-1910/+1910
* Use ';' after initialization macros to avoid confusing re-indentersAndrew M. Kuchling2010-05-101-40/+40
* Break long line in macrosAndrew M. Kuchling2010-05-101-7/+14
* Move { out of #if...#else block; this confuses Emacs' C-modeAndrew M. Kuchling2010-05-101-4/+6
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-3/+3
* Fix _curses.tiget*() functions: deny None to avoid a crash.Victor Stinner2010-03-251-3/+3
* Silence compiler warnings.Ezio Melotti2010-03-131-8/+8
* remove CVS idBenjamin Peterson2010-03-011-2/+0
* Fix comment typoAndrew M. Kuchling2010-02-221-1/+1
* #7597: curses.use_env() can be called before initscr(). Noted by Kan-Ru ChenAndrew M. Kuchling2010-02-221-2/+0
* #6243: fix segfault when keyname() returns a NULL pointer.Andrew M. Kuchling2009-09-251-4/+7
* Initialize variables in PyCurses_getsyx() to avoid compiler warnings.Alexandre Vassalotti2009-07-171-1/+2
* Only include update_lines_cols() function when it's actually going to be usedAndrew M. Kuchling2008-06-191-0/+2
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-18/+18
* Renamed PyString to PyBytesChristian Heimes2008-05-261-18/+18
* #1940: make it possible to use curses.filter() before curses.initscr()Georg Brandl2008-01-261-1/+10
* Related to patch #1114: fix another place where attr_t is assumed to be a longAndrew M. Kuchling2008-01-091-4/+9
* Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP6...Andrew M. Kuchling2008-01-081-25/+79
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Stop using METH_OLDARGS implicitlyNeal Norwitz2007-05-221-2/+2
* Point readers at the patch submission instructionsAndrew M. Kuchling2007-04-111-3/+6
* Add window.chgat() method, submitted via e-mail by Fabian KreutzAndrew M. Kuchling2007-04-111-4/+55
* Patch for bug #1633621: if curses.resizeterm() orWalter Dörwald2007-03-061-2/+62
* Bug #1548092: fix curses.tparm seg fault on invalid input. Needs backport to...Neal Norwitz2006-09-021-0/+4
* Handle failure from PyModule_GetDict() (Klocwork 208).Neal Norwitz2006-08-131-9/+15
* Correct error messageAndrew M. Kuchling2006-07-261-1/+1
* [Bug #1471938] Fix build problem on Solaris 8 by conditionalizing the use of ...Andrew M. Kuchling2006-07-261-2/+5
* Patch #1506645: add Python wrappers for the curses functionsWalter Dörwald2006-06-191-1/+66
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* SF bug #1400822, Extended version of _curses over{lay,write} does not workNeal Norwitz2006-01-101-3/+3
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Fix check for error conditionAndrew M. Kuchling2005-06-151-1/+1
* [Bug #1200134] Fix buffer overflow by constraining size of .getstr(), .instr(...Andrew M. Kuchling2005-06-091-9/+13
* Fix a leak of a reference on None.Michael W. Hudson2004-08-041-3/+1
* [Patch #739124] Add use_default_colors() to curses moduleAndrew M. Kuchling2003-08-131-1/+24