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
/
_curses_panel.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)
Eddie Elizondo
2019-03-27
1
-1/+5
*
bpo-36101: remove non-ascii characters in docstring (GH-12018)
animalize
2019-02-24
1
-4/+4
*
bpo-20171: Convert the _curses and _curses_panel modules to Argument Clinic. ...
Serhiy Storchaka
2018-05-10
1
-74/+210
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-16/+9
*
Issue #25745: Fixed leaking a userptr in curses panel destructor.
Serhiy Storchaka
2016-05-08
1
-0/+5
|
\
|
*
Issue #25745: Fixed leaking a userptr in curses panel destructor.
Serhiy Storchaka
2016-05-08
1
-0/+5
*
|
Issue #23815: Fixed crashes related to directly created instances of types in
Serhiy Storchaka
2016-05-08
1
-3/+4
|
\
\
|
|
/
|
*
Issue #23815: Fixed crashes related to directly created instances of types in
Serhiy Storchaka
2016-05-08
1
-3/+4
*
|
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-1/+1
|
\
\
|
|
/
|
*
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-1/+1
*
|
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
|
\
\
|
|
/
|
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-1/+1
*
|
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka
2015-12-25
1
-1/+1
|
/
*
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-3/+2
*
Issue #18408: Fix PyInit__curses_panel(), handle import_curses() failure
Victor Stinner
2013-07-18
1
-0/+2
*
Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules
Victor Stinner
2013-07-07
1
-3/+3
*
#18113: avoid segfault if Py_XDECREF triggers code that calls set_panel_userp...
Andrew Kuchling
2013-06-22
1
-3/+8
*
#18113: Objects associated to a curses.panel object with set_userptr() were l...
Andrew Kuchling
2013-06-15
1
-0/+4
*
Issue #14936: curses_panel was converted to PEP 3121 and PEP 384 API.
Martin v. Löwis
2012-06-14
1
-43/+29
*
Issue #14936: curses_panel was converted to PEP 3121 API.
Martin v. Löwis
2012-06-14
1
-12/+42
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-113/+113
*
Merged revisions 78635 via svnmerge from
Victor Stinner
2010-03-03
1
-5/+8
*
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson
2009-02-02
1
-1/+1
*
#3247: get rid of Py_FindMethod
Amaury Forgeot d'Arc
2008-07-02
1
-9/+18
*
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis
2008-06-11
1
-3/+17
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes
2007-12-19
1
-2/+2
*
Convert a bunch of constant strings in C to unicode.
Neal Norwitz
2007-08-23
1
-1/+1
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-4/+3
*
Coverity-found bug: don't use temp->next *before* checking it for NULL. Also
Thomas Wouters
2006-03-07
1
-2/+4
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
Bug #1400115, Fix segfault when calling curses.panel.userptr()
Neal Norwitz
2006-01-09
1
-0/+5
*
Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
Mark Hammond
2002-08-02
1
-1/+1
*
Fix whitespace
Neal Norwitz
2002-03-31
1
-2/+1
*
Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS.
Neal Norwitz
2002-03-25
1
-12/+7
*
Oh look, another one.
Michael W. Hudson
2002-01-30
1
-1/+1
*
Patch #477752: Drop old-style getargs from curses.
Martin v. Löwis
2002-01-17
1
-41/+23
*
Patch supplied by Burton Radons for his own SF bug #487390: Modifying
Guido van Rossum
2001-12-08
1
-1/+1
*
Cast argument to set_panel_userptr to void*. Fixes bug #417240.
Martin v. Löwis
2001-10-13
1
-1/+1
*
init_curses_panel(): Be more consistent with indentation and blank lines.
Fred Drake
2001-01-27
1
-5/+3
*
SF Patch #103185, by jlt63: Some more standard modules cleanup for Cygwin
Guido van Rossum
2001-01-22
1
-2/+5
*
Minor patch from Thomas Gellekum:
Andrew M. Kuchling
2001-01-19
1
-8/+3
*
Shortened / wrapped some long lines.
Fred Drake
2000-12-23
1
-8/+11
*
Add correction caught by Thomas Gellekum (and sitting in my e-mail)
Andrew M. Kuchling
2000-12-22
1
-1/+2
*
Patch #102813: add a wrapper for the panel library included with ncurses.
Andrew M. Kuchling
2000-12-22
1
-0/+495