1. a39c47a #8862: Fix curses cleanup with getchar is interrupted by a signal. by R David Murray · 12 years ago
  2. 6e86bf7 - Issue #7567: Don't call `setupterm' twice. by Matthias Klose · 15 years ago
  3. fd2103e reindent _cursesmodule.c by Victor Stinner · 15 years ago
  4. 035fbba Use ';' after initialization macros to avoid confusing re-indenters by Andrew M. Kuchling · 15 years ago
  5. 3eee7af Break long line in macros by Andrew M. Kuchling · 15 years ago
  6. 40f09c0 Move { out of #if...#else block; this confuses Emacs' C-mode by Andrew M. Kuchling · 15 years ago
  7. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  8. 53ff86e Fix _curses.tiget*() functions: deny None to avoid a crash. by Victor Stinner · 15 years ago
  9. eb6d430 Silence compiler warnings. by Ezio Melotti · 15 years ago
  10. 41162eb remove CVS id by Benjamin Peterson · 15 years ago
  11. 72aae73 Fix comment typo by Andrew M. Kuchling · 15 years ago
  12. 38c1236 #7597: curses.use_env() can be called before initscr(). Noted by Kan-Ru Chen by Andrew M. Kuchling · 15 years ago
  13. b49e53e #6243: fix segfault when keyname() returns a NULL pointer. by Andrew M. Kuchling · 16 years ago
  14. 6d78736 Initialize variables in PyCurses_getsyx() to avoid compiler warnings. by Alexandre Vassalotti · 16 years ago
  15. 3d8f8c1 Only include update_lines_cols() function when it's actually going to be used by Andrew M. Kuchling · 17 years ago
  16. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  17. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  18. 29604a1 #1940: make it possible to use curses.filter() before curses.initscr() by Georg Brandl · 18 years ago
  19. 3eb4aa7 Related to patch #1114: fix another place where attr_t is assumed to be a long by Andrew M. Kuchling · 18 years ago
  20. 62182c8 Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP64 platforms where attr_t isn't a C long by Andrew M. Kuchling · 18 years ago
  21. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 18 years ago
  22. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  23. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  24. a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 18 years ago
  25. a6fbc1eab Point readers at the patch submission instructions by Andrew M. Kuchling · 18 years ago
  26. 400a49b Add window.chgat() method, submitted via e-mail by Fabian Kreutz by Andrew M. Kuchling · 18 years ago
  27. d391f08 Patch for bug #1633621: if curses.resizeterm() or by Walter Dörwald · 18 years ago
  28. 6aefa91 Bug #1548092: fix curses.tparm seg fault on invalid input. Needs backport to 2.5.1 and earlier. by Neal Norwitz · 19 years ago
  29. 20745b1 Handle failure from PyModule_GetDict() (Klocwork 208). by Neal Norwitz · 19 years ago
  30. a1da204 Correct error message by Andrew M. Kuchling · 19 years ago
  31. 55b0a0e [Bug #1471938] Fix build problem on Solaris 8 by conditionalizing the use of mvwgetnstr(); it was conditionalized a few lines below. Fix from Paul Eggert. I also tried out the STRICT_SYSV_CURSES case and am therefore removing the 'untested' comment. by Andrew M. Kuchling · 19 years ago
  32. 4994d95 Patch #1506645: add Python wrappers for the curses functions by Walter Dörwald · 19 years ago
  33. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  34. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 20 years ago
  35. 88bbd73 SF bug #1400822, Extended version of _curses over{lay,write} does not work by Neal Norwitz · 20 years ago
  36. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  37. b5e7ff4 Fix check for error condition by Andrew M. Kuchling · 20 years ago
  38. 52a14c3 [Bug #1200134] Fix buffer overflow by constraining size of .getstr(), .instr() to size of allocated buffer by Andrew M. Kuchling · 20 years ago
  39. 7d6cc5b Fix a leak of a reference on None. by Michael W. Hudson · 21 years ago
  40. 69f31eb [Patch #739124] Add use_default_colors() to curses module by Andrew M. Kuchling · 22 years ago
  41. 2100798 Always call tparm with 10 arguments. It seems it's not varargs i by Michael W. Hudson · 23 years ago
  42. 7e23f00 [Patch #633635 from David M. Cooke] by Andrew M. Kuchling · 23 years ago
  43. 3adefcc Use personal e-mail address by Andrew M. Kuchling · 23 years ago
  44. c9d07df Remove duplicate definitions of _XOPEN_SOURCE_EXTENDED. by Martin v. Löwis · 23 years ago
  45. 21ee409 Patch #615069: Fix build problems on SCO Open Server 5. Backported to 2.2. by Martin v. Löwis · 23 years ago
  46. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 23 years ago
  47. 67fb0c3 I think this fixes by Michael W. Hudson · 24 years ago
  48. c0e1671 Patch #477752: Drop old-style getargs from curses. by Martin v. Löwis · 24 years ago
  49. 8f51460 Change some spaces to tabs. I don't *think* that was me, but it by Michael W. Hudson · 24 years ago
  50. f242812 Fix for by Michael W. Hudson · 24 years ago
  51. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 24 years ago
  52. 43f2dc6 Limit string size on one-character-strings. Fixes #480384. by Martin v. Löwis · 24 years ago
  53. 00ff10c Patch in bug report #477700: Fix memory leaks in gdbm & curses. by Martin v. Löwis · 24 years ago
  54. eb9b103 Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and by Martin v. Löwis · 24 years ago
  55. 16e65a0 Add two forgotten 'break' statements by Andrew M. Kuchling · 24 years ago
  56. 1c07b4b Test for __sun instead of __sun__, since SUNWspro only defines the latter; by Martin v. Löwis · 24 years ago
  57. 4a596e3 [Bug #457654] bkgd() used a hard-coded A_NORMAL attribute, when it should by Andrew M. Kuchling · 24 years ago
  58. 0368bc4 Remove warnings from the SGI compiler. This is part of SF patch #434992. by Fred Drake · 24 years ago
  59. 5a76c44 Fix bug #417212: "curses.newwin can return pads" by changing the Python by Andrew M. Kuchling · 24 years ago
  60. bfdf4ec Properly use &&. Closes bug #434988. by Martin v. Löwis · 24 years ago
  61. 858ca0f Include py_curses.h *after* defining _XOPEN_SOURCE_EXTENDED. by Guido van Rossum · 24 years ago
  62. 2d339f9 Patch #103485 from Donn Cave: patches to make the module compile on AIX and by Andrew M. Kuchling · 25 years ago
  63. e1c4352 Rename 'lines' variable to 'nlines' to avoid conflict with a macro defined by Andrew M. Kuchling · 25 years ago
  64. 399b8af Bug #130117: add a prototype required to compile cleanly on IRIX by Andrew M. Kuchling · 25 years ago
  65. 6915c4d Support building this as a DLL under Cygwin. by Guido van Rossum · 25 years ago
  66. caefb37 Add the curses constants ERR and OK to the module at TG's suggestion by Andrew M. Kuchling · 25 years ago
  67. 3255268 Export C API from this module. by Andrew M. Kuchling · 25 years ago
  68. 9de6ffa Another patch from Thomas Gellekum: add .overlay() and .overwrite() by Andrew M. Kuchling · 25 years ago
  69. 2824d7f Wrapper for napms() function, contributed by Thomas Gellekum <tg@FreeBSD.org> by Andrew M. Kuchling · 25 years ago
  70. 26cc66f Patch #102412 from mwh: Add support for the setupterm() function, to by Andrew M. Kuchling · 25 years ago
  71. f16e0ed Patch #102278: add tparm() function to _curses module by Andrew M. Kuchling · 25 years ago
  72. e7d3616 Patch from Randall Hopper to fix PR #116172, "curses module fails to by Andrew M. Kuchling · 25 years ago
  73. 51ee09b Don't call Py_FatalError in module initialization by Jeremy Hylton · 25 years ago
  74. a98e92b Add alias for old function name -- removing it broke Alexei Gilchrist's cfm by Andrew M. Kuchling · 25 years ago
  75. fb6bbf5 Added list of missing functions as a comment by Andrew M. Kuchling · 25 years ago
  76. 8353f62 Comment out a debugging print (spotted by Michael Deegan) by Andrew M. Kuchling · 25 years ago
  77. 70e89c1 Added wrappers for tiget{flag,num,str}, for querying terminfo capabilities by Andrew M. Kuchling · 25 years ago
  78. bf68026 Modified version of patch #100963 from Mark Favas: has_key() is an by Andrew M. Kuchling · 25 years ago
  79. 4463acb Bug report and partial patch from Michael Deegan <michael@ucc.gu.uwa.edu.au>: by Andrew M. Kuchling · 25 years ago
  80. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 25 years ago
  81. ad9b1f8 Patch from Peter Schneider-Kamp: convert curses module to ANSI prototypes, by Andrew M. Kuchling · 25 years ago
  82. 589c35b Python 2.0 is not supposed to use string exceptions in the standard library by Fred Drake · 25 years ago
  83. 1a10400 Removed unused variables. by Andrew M. Kuchling · 25 years ago
  84. a1e4b05 Fixes for compiling on Tru64. by Andrew M. Kuchling · 25 years ago
  85. b6e4687 Fix two typos (, instead of ;) by Andrew M. Kuchling · 25 years ago
  86. 8e9d23b Added support for mouse functions: mousemask(), mouseinterval(), by Andrew M. Kuchling · 25 years ago
  87. f419572 Release the global interpreter lock around the most important by Andrew M. Kuchling · 25 years ago
  88. 97311bb Added .timeout() method and .typeahead() function by Andrew M. Kuchling · 25 years ago
  89. b7f198e Renamed the C extension for ncurses support from 'curses' to '_curses'. by Andrew M. Kuchling · 25 years ago
  90. 03e644b Changes by AMK: Use HAVE_NCURSES_H to include correct header file by Andrew M. Kuchling · 25 years ago
  91. 22b88ce Oliver Andrich's ncurses-specific curses module, version 1.5b1 by Andrew M. Kuchling · 25 years ago
  92. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
  93. 716a89c Patch by Charles Waldman to implement an optional nlines argument to by Guido van Rossum · 27 years ago
  94. 1184789 Chris Herborth discovered a typo in the arrow key symbols. by Guido van Rossum · 27 years ago
  95. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 27 years ago
  96. d5f6c22 Make the version variable static (it has no business being exported). by Guido van Rossum · 27 years ago
  97. 0cb96de Apply two changes, systematically: by Guido van Rossum · 28 years ago
  98. db4a629 Avoid warning from gcc on Linux about dropping const. by Guido van Rossum · 28 years ago
  99. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 29 years ago
  100. 1266a01 Include ncurses.h where needed by Guido van Rossum · 29 years ago