| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #20226: Major improvements to Argument Clinic. | Larry Hastings | 2014-01-16 | 1 | -2/+2 |
|
|
* | Issue #19273: The marker comments Argument Clinic uses have been changed | Larry Hastings | 2014-01-07 | 1 | -6/+6 |
|
|
* | ncurses' winch and mvwinch return an unsigned long | Christian Heimes | 2013-12-04 | 1 | -2/+3 |
|\ |
|
| * | ncurses' winch and mvwinch return an unsigned long | Christian Heimes | 2013-12-04 | 1 | -2/+3 |
|
|
* | | Issue #19674: inspect.signature() now produces a correct signature | Larry Hastings | 2013-11-23 | 1 | -4/+8 |
|
|
* | | Issue #19474: Argument Clinic now always specifies a default value for | Larry Hastings | 2013-11-20 | 1 | -4/+4 |
|
|
* | | Argument Clinic: rename "self" to "module" for module-level functions. | Larry Hastings | 2013-11-18 | 1 | -1/+0 |
|
|
* | | Issue #19512, #19515: remove shared identifiers, move identifiers where they | Victor Stinner | 2013-11-07 | 1 | -1/+1 |
|
|
* | | Issue #19512: add some common identifiers to only create common strings once, | Victor Stinner | 2013-11-06 | 1 | -1/+1 |
|
|
* | | Fix compilation of the curses module (broken by issue #16612). | Serhiy Storchaka | 2013-10-19 | 1 | -1/+1 |
|
|
* | | Issue #16612: Add "Argument Clinic", a compile-time preprocessor | Larry Hastings | 2013-10-19 | 1 | -41/+114 |
|
|
* | | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 1 | -32/+39 |
|
|
* | | Fix possible NULL pointer dereference in PyCurses_Start_Color() | Christian Heimes | 2013-07-26 | 1 | -0/+4 |
|\ \
| |/ |
|
| * | Fix possible NULL pointer dereference in PyCurses_Start_Color() | Christian Heimes | 2013-07-26 | 1 | -0/+4 |
|
|
* | | Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() | Victor Stinner | 2013-07-07 | 1 | -4/+4 |
|
|
* | | Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules | Victor Stinner | 2013-07-07 | 1 | -2/+2 |
|
|
* | | Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros | Victor Stinner | 2013-06-04 | 1 | -9/+5 |
|/ |
|
* | C89 declaration compliance | Benjamin Peterson | 2013-05-16 | 1 | -1/+1 |
|
|
* | Issue #17209: curses.window.get_wch() now handles correctly KeyboardInterrupt... | Victor Stinner | 2013-03-21 | 1 | -0/+3 |
|
|
* | Merge: #8862: Fix curses cleanup with getchar is interrupted by a signal. | R David Murray | 2013-03-19 | 1 | -1/+3 |
|\ |
|
| * | #8862: Fix curses cleanup with getchar is interrupted by a signal. | R David Murray | 2013-03-19 | 1 | -1/+3 |
|
|
* | | Issue #15876: Fix a refleak in the curses module | Ross Lagerwall | 2012-09-07 | 1 | -0/+1 |
|
|
* | | Close #14223: Fix window.addch(curses.ACS_HLINE) | Victor Stinner | 2012-09-01 | 1 | -27/+7 |
|
|
* | | Issue #15785: Modify window.get_wch() API of the curses module: return a | Victor Stinner | 2012-08-28 | 1 | -1/+4 |
|
|
* | | fix compiler warnings | Benjamin Peterson | 2012-03-14 | 1 | -4/+4 |
|
|
* | | Close #14223: curses.addch() is no more limited to the range 0-255 when the | Victor Stinner | 2012-03-08 | 1 | -1/+1 |
|
|
* | | Add missing sentinel to PyCursesWindow_getsets | Ronald Oussoren | 2012-01-17 | 1 | -1/+2 |
|
|
* | | Issue #12567: The curses module uses Unicode functions for Unicode arguments | Victor Stinner | 2011-11-25 | 1 | -108/+468 |
|
|
* | | (Merge 3.2) Issue #10570: curses.putp() is now expecting a byte string, instead | Victor Stinner | 2011-11-03 | 1 | -1/+2 |
|\ \
| |/ |
|
| * | Issue #10570: curses.putp() is now expecting a byte string, instead of a | Victor Stinner | 2011-11-03 | 1 | -1/+2 |
|
|
* | | (Merge 3.2) Issue #10570: curses.tigetstr() is now expecting a byte string, | Victor Stinner | 2011-11-02 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a | Victor Stinner | 2011-11-02 | 1 | -1/+1 |
|
|
* | | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. | Martin v. Löwis | 2011-10-14 | 1 | -4/+7 |
|
|
* | | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -2/+2 |
|
|
* | | Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead | Victor Stinner | 2011-10-11 | 1 | -1/+1 |
|
|
* | | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -2/+5 |
|
|
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -2/+5 |
|
|
* | | Issue #12567: Add curses.unget_wch() function | Victor Stinner | 2011-09-05 | 1 | -0/+68 |
|
|
* | | Fix build error in _curses module when not using libncursesw. | Nadeem Vawda | 2011-07-31 | 1 | -0/+4 |
|
|
* | | Close #6755: Add get_wch() method to curses.window class | Victor Stinner | 2011-07-14 | 1 | -0/+33 |
|
|
* | | Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 | Jesus Cea | 2011-03-14 | 1 | -4/+0 |
|/ |
|
* | - Issue #7567: PyCurses_setupterm: Don't call `setupterm' twice. | Matthias Klose | 2010-07-30 | 1 | -1/+1 |
|
|
* | Recorded merge of revisions 81213 via svnmerge from | Victor Stinner | 2010-05-15 | 1 | -1994/+1994 |
|
|
* | Issue #8677: Make curses module PY_SSIZE_T_CLEAN. | Mark Dickinson | 2010-05-11 | 1 | -1/+3 |
|
|
* | Merged revisions 81073 via svnmerge from | Andrew M. Kuchling | 2010-05-10 | 1 | -40/+40 |
|
|
* | Merged revisions 81072 via svnmerge from | Andrew M. Kuchling | 2010-05-10 | 1 | -7/+14 |
|
|
* | Merged revisions 81049 via svnmerge from | Andrew M. Kuchling | 2010-05-10 | 1 | -4/+6 |
|
|
* | Merged revisions 79395 via svnmerge from | Victor Stinner | 2010-03-25 | 1 | -3/+3 |
|
|
* | Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,... | Benjamin Peterson | 2010-03-21 | 1 | -2/+0 |
|
|
* | Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,... | Benjamin Peterson | 2010-03-21 | 1 | -1/+1 |
|
|