| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-44712: Replace "type(literal)" with corresponding builtin types (GH-27294) | Serhiy Storchaka | 2022-05-08 | 1 | -4/+4 |
|
|
* | [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) | Serhiy Storchaka | 2019-06-05 | 1 | -13/+1 |
|
|
* | bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) | Serhiy Storchaka | 2019-05-06 | 1 | -0/+1 |
|
|
* | bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637) | Serhiy Storchaka | 2019-04-01 | 1 | -1/+12 |
|
|
* | Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. | Serhiy Storchaka | 2016-12-28 | 1 | -9/+22 |
|
|
* | Issue #9770: curses.ascii predicates now work correctly with negative integers. | Serhiy Storchaka | 2016-12-28 | 1 | -9/+9 |
|
|
* | Issue #27294: Numerical state in the repr for Tkinter event objects is now | Serhiy Storchaka | 2016-06-18 | 1 | -3/+3 |
|
|
* | Fix docstring in curses (#16782) | Andrew Svetlov | 2012-12-29 | 1 | -1/+1 |
|\ |
|
| * | Fix docstring in curses (#16782) | Andrew Svetlov | 2012-12-29 | 1 | -1/+1 |
|
|
* | | (Merge 3.2) Fix curses module for strict SysV implementation (without has_key... | Victor Stinner | 2011-11-28 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Fix curses module for strict SysV implementation (without has_key function) | Victor Stinner | 2011-11-28 | 1 | -1/+1 |
|
|
* | | merge from 3.2 - Fix closes Issue11439 Remove the SVN keywords from the code ... | Senthil Kumaran | 2011-07-28 | 2 | -4/+0 |
|\ \
| |/ |
|
| * | Fix closes Issue11439 Remove the SVN keywords from the code as it is no longe... | Senthil Kumaran | 2011-07-28 | 2 | -4/+0 |
|
|
* | | #6771: Move wrapper function into __init__ and eliminate wrapper module | R David Murray | 2011-06-19 | 2 | -51/+45 |
|/ |
|
* | Issue #5622: Fix curses.wrapper to raise correct exception if curses | Ned Deily | 2011-03-09 | 1 | -4/+5 |
|
|
* | Merged revisions 82805-82806,83523-83527,83536,83538,83542,83546-83548,83550-... | Georg Brandl | 2010-10-06 | 1 | -2/+1 |
|
|
* | Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,... | Georg Brandl | 2008-07-16 | 1 | -18/+19 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,... | Christian Heimes | 2008-02-26 | 1 | -1/+3 |
|
|
* | Merged revisions 60990-61002 via svnmerge from | Christian Heimes | 2008-02-23 | 1 | -1/+1 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-23 | 1 | -0/+4 |
|
|
* | Merged revisions 60094-60123 via svnmerge from | Christian Heimes | 2008-01-20 | 1 | -11/+25 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 2 | -2/+2 |
|
|
* | [Bug #1152762] Ensure _end_of_line() returns an x-coordinate that's within th... | Andrew M. Kuchling | 2005-06-02 | 1 | -1/+1 |
|
|
* | Display helpful message; print repr() of return value so the whitespace is cl... | Andrew M. Kuchling | 2004-10-19 | 1 | -1/+2 |
|
|
* | [Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from St... | Andrew M. Kuchling | 2004-10-19 | 1 | -0/+2 |
|
|
* | Make magic coordinates more readable | Andrew M. Kuchling | 2004-10-19 | 1 | -3/+7 |
|
|
* | Somehow (no idea how!) I missed half of patch #1005008. Sorry about that. | Michael W. Hudson | 2004-08-07 | 1 | -1/+1 |
|
|
* | This is patch | Michael W. Hudson | 2004-08-07 | 1 | -17/+4 |
|
|
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 3 | -156/+152 |
|
|
* | Modernize code a bit: use isinstance instead of type(); return True/False | Andrew M. Kuchling | 2003-09-02 | 1 | -4/+7 |
|
|
* | [Patch #759208] Fix has_key emulation to not raise KeyError | Andrew M. Kuchling | 2003-09-02 | 1 | -1/+3 |
|
|
* | Rework previous fix slightly; the &0x20 test seems useless, and the isprint()... | Andrew M. Kuchling | 2003-08-29 | 1 | -4/+2 |
|
|
* | [Bug #790356] unctrl() doesn't work for full printable charset. Fix by Dave ... | Andrew M. Kuchling | 2003-08-29 | 1 | -0/+2 |
|
|
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -1/+1 |
|
|
* | Whitespace normalization (get rid of tabs). | Guido van Rossum | 2002-09-29 | 3 | -63/+62 |
|
|
* | Patch #521670: Remove unused sys import. | Martin v. Löwis | 2002-02-23 | 1 | -2/+1 |
|
|
* | Catch curses.error instead of a non-existent global (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 1 | -2/+2 |
|
|
* | Remove redundant import | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+0 |
|
|
* | Bug #412086, reported by Peter Wilson: The _curses module doesn't | Andrew M. Kuchling | 2001-04-05 | 1 | -0/+13 |
|
|
* | Make isspace(chr(32)) return true | Andrew M. Kuchling | 2000-12-26 | 1 | -1/+1 |
|
|
* | Wrapper for _curses_panel module; currently this adds nothing extra | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+9 |
|
|
* | Tweak curses.wrapper so it initializes colors if they are available. | Eric S. Raymond | 2000-08-09 | 1 | -0/+9 |
|
|
* | Corrected a bug in handling of ^N and ^P with stripspaces on. | Eric S. Raymond | 2000-08-04 | 1 | -8/+12 |
|
|
* | Added Python function to emulate the ncurses has_key() function. | Andrew M. Kuchling | 2000-08-01 | 2 | -0/+197 |
|
|
* | Remove extra argument to method call | Andrew M. Kuchling | 2000-07-12 | 1 | -1/+1 |
|
|
* | Docstring changes. | Andrew M. Kuchling | 2000-07-11 | 2 | -6/+2 |
|
|
* | fix inconsistent use of tabs and spaces | Jeremy Hylton | 2000-07-07 | 1 | -8/+11 |
|
|
* | Fix comment typo noticed by Rob Hooft | Andrew M. Kuchling | 2000-06-27 | 1 | -1/+1 |
|
|
* | Sync to ESR's current version | Andrew M. Kuchling | 2000-06-27 | 1 | -22/+28 |
|
|
* | Drop back to old version of wrapper(); ESR reports that it broke things, | Andrew M. Kuchling | 2000-06-27 | 1 | -4/+16 |
|
|