index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_cursesmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #28998: More APIs now support longs as well as ints.
Serhiy Storchaka
2016-12-27
1
-3/+11
*
fail when negative values are passed to instr()
Benjamin Peterson
2016-08-16
1
-0/+8
*
do not allow reading negative values with getstr()
Benjamin Peterson
2016-08-14
1
-0/+8
*
#8862: Fix curses cleanup with getchar is interrupted by a signal.
R David Murray
2013-03-19
1
-1/+3
*
- Issue #7567: Don't call `setupterm' twice.
Matthias Klose
2010-07-30
1
-1/+1
*
reindent _cursesmodule.c
Victor Stinner
2010-05-15
1
-1910/+1910
*
Use ';' after initialization macros to avoid confusing re-indenters
Andrew M. Kuchling
2010-05-10
1
-40/+40
*
Break long line in macros
Andrew M. Kuchling
2010-05-10
1
-7/+14
*
Move { out of #if...#else block; this confuses Emacs' C-mode
Andrew M. Kuchling
2010-05-10
1
-4/+6
*
Backported PyCapsule from 3.1, and converted most uses of
Larry Hastings
2010-03-25
1
-3/+3
*
Fix _curses.tiget*() functions: deny None to avoid a crash.
Victor Stinner
2010-03-25
1
-3/+3
*
Silence compiler warnings.
Ezio Melotti
2010-03-13
1
-8/+8
*
remove CVS id
Benjamin Peterson
2010-03-01
1
-2/+0
*
Fix comment typo
Andrew M. Kuchling
2010-02-22
1
-1/+1
*
#7597: curses.use_env() can be called before initscr(). Noted by Kan-Ru Chen
Andrew M. Kuchling
2010-02-22
1
-2/+0
*
#6243: fix segfault when keyname() returns a NULL pointer.
Andrew M. Kuchling
2009-09-25
1
-4/+7
*
Initialize variables in PyCurses_getsyx() to avoid compiler warnings.
Alexandre Vassalotti
2009-07-17
1
-1/+2
*
Only include update_lines_cols() function when it's actually going to be used
Andrew M. Kuchling
2008-06-19
1
-0/+2
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-18/+18
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-18/+18
*
#1940: make it possible to use curses.filter() before curses.initscr()
Georg Brandl
2008-01-26
1
-1/+10
*
Related to patch #1114: fix another place where attr_t is assumed to be a long
Andrew M. Kuchling
2008-01-09
1
-4/+9
*
Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP6...
Andrew M. Kuchling
2008-01-08
1
-25/+79
*
Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...
Christian Heimes
2008-01-03
1
-1/+1
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-1/+1
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-3/+2
*
Stop using METH_OLDARGS implicitly
Neal Norwitz
2007-05-22
1
-2/+2
*
Point readers at the patch submission instructions
Andrew M. Kuchling
2007-04-11
1
-3/+6
*
Add window.chgat() method, submitted via e-mail by Fabian Kreutz
Andrew M. Kuchling
2007-04-11
1
-4/+55
*
Patch for bug #1633621: if curses.resizeterm() or
Walter Dörwald
2007-03-06
1
-2/+62
*
Bug #1548092: fix curses.tparm seg fault on invalid input. Needs backport to...
Neal Norwitz
2006-09-02
1
-0/+4
*
Handle failure from PyModule_GetDict() (Klocwork 208).
Neal Norwitz
2006-08-13
1
-9/+15
*
Correct error message
Andrew M. Kuchling
2006-07-26
1
-1/+1
*
[Bug #1471938] Fix build problem on Solaris 8 by conditionalizing the use of ...
Andrew M. Kuchling
2006-07-26
1
-2/+5
*
Patch #1506645: add Python wrappers for the curses functions
Walter Dörwald
2006-06-19
1
-1/+66
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-1/+1
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
SF bug #1400822, Extended version of _curses over{lay,write} does not work
Neal Norwitz
2006-01-10
1
-3/+3
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-2/+2
*
Fix check for error condition
Andrew M. Kuchling
2005-06-15
1
-1/+1
*
[Bug #1200134] Fix buffer overflow by constraining size of .getstr(), .instr(...
Andrew M. Kuchling
2005-06-09
1
-9/+13
*
Fix a leak of a reference on None.
Michael W. Hudson
2004-08-04
1
-3/+1
*
[Patch #739124] Add use_default_colors() to curses module
Andrew M. Kuchling
2003-08-13
1
-1/+24
*
Always call tparm with 10 arguments. It seems it's not varargs i
Michael W. Hudson
2002-11-21
1
-43/+3
*
[Patch #633635 from David M. Cooke]
Andrew M. Kuchling
2002-11-06
1
-6/+14
*
Use personal e-mail address
Andrew M. Kuchling
2002-10-30
1
-2/+1
*
Remove duplicate definitions of _XOPEN_SOURCE_EXTENDED.
Martin v. Löwis
2002-10-26
1
-2/+0
*
Patch #615069: Fix build problems on SCO Open Server 5. Backported to 2.2.
Martin v. Löwis
2002-09-30
1
-1/+1
*
Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
Mark Hammond
2002-08-02
1
-1/+1
*
I think this fixes
Michael W. Hudson
2002-01-30
1
-1/+1
[next]