summaryrefslogtreecommitdiffstats
path: root/Modules/_cursesmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Always call tparm with 10 arguments. It seems it's not varargs iMichael W. Hudson2002-11-211-43/+3
* [Patch #633635 from David M. Cooke]Andrew M. Kuchling2002-11-061-6/+14
* Use personal e-mail addressAndrew M. Kuchling2002-10-301-2/+1
* Remove duplicate definitions of _XOPEN_SOURCE_EXTENDED.Martin v. Löwis2002-10-261-2/+0
* Patch #615069: Fix build problems on SCO Open Server 5. Backported to 2.2.Martin v. Löwis2002-09-301-1/+1
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* I think this fixesMichael W. Hudson2002-01-301-1/+1
* Patch #477752: Drop old-style getargs from curses.Martin v. Löwis2002-01-171-331/+286
* Change some spaces to tabs. I don't *think* that was me, but itMichael W. Hudson2002-01-161-2/+2
* Fix forMichael W. Hudson2002-01-161-8/+8
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
* Limit string size on one-character-strings. Fixes #480384.Martin v. Löwis2001-11-111-2/+2
* Patch in bug report #477700: Fix memory leaks in gdbm & curses.Martin v. Löwis2001-11-111-0/+1
* Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED andMartin v. Löwis2001-10-241-7/+40
* Add two forgotten 'break' statementsAndrew M. Kuchling2001-10-201-15/+40
* Test for __sun instead of __sun__, since SUNWspro only defines the latter;Martin v. Löwis2001-10-131-1/+1
* [Bug #457654] bkgd() used a hard-coded A_NORMAL attribute, when it shouldAndrew M. Kuchling2001-09-041-1/+1
* Remove warnings from the SGI compiler.Fred Drake2001-07-191-6/+3
* Fix bug #417212: "curses.newwin can return pads" by changing the PythonAndrew M. Kuchling2001-07-141-3/+2
* Properly use &&. Closes bug #434988.Martin v. Löwis2001-06-231-2/+2
* Include py_curses.h *after* defining _XOPEN_SOURCE_EXTENDED.Guido van Rossum2001-04-101-2/+3
* Patch #103485 from Donn Cave: patches to make the module compile on AIX andAndrew M. Kuchling2001-01-291-0/+36
* Rename 'lines' variable to 'nlines' to avoid conflict with a macro definedAndrew M. Kuchling2001-01-291-7/+7
* Bug #130117: add a prototype required to compile cleanly on IRIXAndrew M. Kuchling2001-01-281-0/+1
* Support building this as a DLL under Cygwin.Guido van Rossum2001-01-191-2/+5
* Add the curses constants ERR and OK to the module at TG's suggestionAndrew M. Kuchling2000-12-261-0/+3
* Export C API from this module.Andrew M. Kuchling2000-12-221-99/+47
* Another patch from Thomas Gellekum: add .overlay() and .overwrite()Andrew M. Kuchling2000-12-211-3/+81
* Wrapper for napms() function, contributed by Thomas Gellekum <tg@FreeBSD.org>Andrew M. Kuchling2000-12-151-1/+50
* Patch #102412 from mwh: Add support for the setupterm() function, toAndrew M. Kuchling2000-11-181-15/+76
* Patch #102278: add tparm() function to _curses moduleAndrew M. Kuchling2000-11-071-4/+55
* Patch from Randall Hopper to fix PR #116172, "curses module fails toAndrew M. Kuchling2000-11-011-4/+38