1. eac40fd Issue #19884: Avoid spurious output on OS X with Gnu Readline by Martin Panter · 8 years ago
  2. b362f75 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  3. 2924124 Issue #22463: Correct #endif placement; patch by Senthil Kumaran by Martin Panter · 8 years ago
  4. 646b528 Issue #22463: Backport compiler warning fixes and workarounds by Martin Panter · 8 years ago
  5. 8d496ad Issue #27171: Fix typos in documentation, code comments, and tests by Martin Panter · 8 years ago
  6. aad86a6 Issue #6953: Rearrange and expand Readline module documentation by Martin Panter · 9 years ago
  7. ed06e8f Issue #23735: Avoid sighandler_t Gnu-ism by Martin Panter · 9 years ago
  8. a70c323 Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price by Martin Panter · 9 years ago
  9. b703611 Issue #24266: Cancel history search mode with Ctrl+C in Readline 7 by Martin Panter · 9 years ago
  10. a8041ae Issue #25203: Failed readline.set_completer_delims() no longer left the by Serhiy Storchaka · 9 years ago
  11. 3a34a72 remove extern definition, since it's in a header file (closes #24058) by Benjamin Peterson · 10 years ago
  12. 06c1497 Issue #22773: fix failing test with old readline versions due to issue #19884. by Antoine Pitrou · 10 years ago
  13. b47b54c Backed out changeset 7c19f1f792c6 by Benjamin Peterson · 10 years ago
  14. 64c1215 don't call rl_initialize when stdout is not a tty by Benjamin Peterson · 10 years ago
  15. 1d9457d Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off") by Victor Stinner · 10 years ago
  16. 63a4747 Issue #19884: readline: Disable the meta modifier key if stdout is not a by Victor Stinner · 10 years ago
  17. 98a9722 Issue #20437: Fixed 43 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  18. ddc697f Issue #20374: delete spurious empty line by Ned Deily · 11 years ago
  19. b0fd12d Issue #20374: Avoid compiler warnings when compiling readline with libedit. by Ned Deily · 11 years ago
  20. 0ac0ead new plan: just remove typecasts (closes #20374) by Benjamin Peterson · 11 years ago
  21. ce75105 use new readline function types (closes #20374) by Benjamin Peterson · 11 years ago
  22. 62a1929 Issue #18458: Prevent crashes with newer versions of libedit. Its readline by Ned Deily · 11 years ago
  23. 31bc8be Issue #17289: The readline module now plays nicer with external modules or applications changing the rl_completer_word_break_characters global variable. by Antoine Pitrou · 12 years ago
  24. 1efd982 Back out fix for issue #13886; it introduced a new bug in interactive readline use. by Nadeem Vawda · 12 years ago
  25. 221508c Issue #13886: Fix input() to not strip out supposedly-invalid input bytes. by Nadeem Vawda · 12 years ago
  26. 7a69725 Merged revisions 87356 via svnmerge from by R. David Murray · 14 years ago
  27. 0f98128 Merged revisions 83670 via svnmerge from by Mark Dickinson · 14 years ago
  28. 4ee9853 Merged revisions 83667 via svnmerge from by Mark Dickinson · 14 years ago
  29. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  30. 23b581a Strip out extraneous whitespace, cast a some `const char *` to `void *` when by Brett Cannon · 15 years ago
  31. 333fca9 Add guard around the prototype for completion_matches to enable by Ronald Oussoren · 15 years ago
  32. d9ff74e Some platforms have rl_completion_append_character but not rl_completion_suppress_append. by Antoine Pitrou · 15 years ago
  33. 119cdef Issue #5833: Fix extra space character in readline completion with the by Antoine Pitrou · 15 years ago
  34. 9f20d9d Issue 6877: this patch makes it possible to link the readline extension by Ronald Oussoren · 15 years ago
  35. 91a3b9e Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)' by Matthias Klose · 16 years ago
  36. bb86d83 Issue #4204: Fixed module build errors on FreeBSD 4. by Martin v. Löwis · 16 years ago
  37. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  38. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  39. 1bc4af4 readline module cleanup by Christian Heimes · 17 years ago
  40. f354894 Only set rl_completion_display_matches_hook if there by Martin v. Löwis · 17 years ago
  41. 58bd49f Patch #1388440: Add set_completion_display_matches_hook and by Martin v. Löwis · 17 years ago
  42. bd53870 SF #1703270, add missing declaration in readline.c to avoid compiler warning. by Neal Norwitz · 18 years ago
  43. 62e475b [Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a timeout on the select() by Andrew M. Kuchling · 18 years ago
  44. 5eaf772 Fix memory leaks in some conditions. by Neal Norwitz · 18 years ago
  45. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  46. e677adc Fix parse errors in readline module when compiling without threads. by Georg Brandl · 19 years ago
  47. e3afc59 In a threads-disabled build, typing Ctrl-C into a raw_input() crashed, by Michael W. Hudson · 20 years ago
  48. da6242c Fixes for by Michael W. Hudson · 20 years ago
  49. 9a8c314 Be a bit more accurate. by Michael W. Hudson · 20 years ago
  50. b47039f I don't think it's particularly accurate to say Guido is maintaining by Michael W. Hudson · 20 years ago
  51. 9533e34 Patch #1093585: raise a ValueError for negative history items in by Martin v. Löwis · 20 years ago
  52. 7a8173a Rename a static variable "history_length" to "_history_length". by Hye-Shik Chang · 20 years ago
  53. 8da2b01 This is Michiel de Hoon's patch, as attached to the bug report: by Michael W. Hudson · 20 years ago
  54. 1fa040b SF #1015517, get readline to compile with older compilers by Neal Norwitz · 20 years ago
  55. 701abe7 Fail fatally if strdup fails. by Martin v. Löwis · 20 years ago
  56. 78a8acc Patch #914291: Restore locale while readline is running. by Martin v. Löwis · 20 years ago
  57. 6c06cd5 fix a couple problems with the last patch picked up by Michael Hudson by Skip Montanaro · 20 years ago
  58. e506901 Add get_history_item and replace_history_item functions to the readline by Skip Montanaro · 20 years ago
  59. 2384990 PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes by Michael W. Hudson · 20 years ago
  60. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  61. 79cddc5 stupid, stupid, stupid... raw_input() already supports readline() if the by Skip Montanaro · 20 years ago
  62. 0dc2310 Exposed readline() function from the readline module. by Skip Montanaro · 20 years ago
  63. 2786d90 A few more PyThreadState_Get to PyThreadState_GET conversions by Nicholas Bastin · 21 years ago
  64. 7befb99 remove support for missing ANSI C header files (limits.h, stddef.h, etc). by Skip Montanaro · 21 years ago
  65. f56d015 Patch #804543: strdup saved locales. Backported to 2.3. by Martin v. Löwis · 21 years ago
  66. e7a9796 Patch #800697: Add readline.clear_history. by Martin v. Löwis · 21 years ago
  67. afd43b5 Remove inaccurate (and it turns out, entirely superfluous) declarations of by Michael W. Hudson · 21 years ago
  68. 21d896c Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros by Neal Norwitz · 21 years ago
  69. d9efdc5 get_completer() takes no args by Neal Norwitz · 22 years ago
  70. c355f0c flex_complete looks like a private (but callback) function, so make it static by Neal Norwitz · 22 years ago
  71. 0e986a3 I was in this module anyway, so I did some janitorial things. by Michael W. Hudson · 22 years ago
  72. 796df15 Add the get_completer() function based on Michael Stone's patch in by Michael W. Hudson · 22 years ago
  73. 6d0d365 Fix from Michael Stone for SF bug #660476 and #513033 (bogus thread by Guido van Rossum · 22 years ago
  74. 05ac449 A few more whitespace normalizations. by Guido van Rossum · 22 years ago
  75. 74f3143 Various cleanups: by Guido van Rossum · 22 years ago
  76. faf5e4d Patch 659834 by Magnus Lie Hetland: by Guido van Rossum · 22 years ago
  77. 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
  78. 60c8a3a GNU readline() mistakenly sets the LC_CTYPE locale. by Guido van Rossum · 22 years ago
  79. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  80. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  81. a039274 patch #562492 - prevent duplicate lines in history by Skip Montanaro · 22 years ago
  82. 84271bb SF #558432: Prevent Annoying ' ' from readline (Holker Krekel). by Guido van Rossum · 22 years ago
  83. 0e0ee59 #544265, Remove warnings for passing const to free() by Neal Norwitz · 23 years ago
  84. 767f835 Get rid of warnings due to changing to METH_NOARGS by Neal Norwitz · 23 years ago
  85. 3a6f978 Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. by Neal Norwitz · 23 years ago
  86. 0f75e0d Add get_history_item, get_current_history_length, and redisplay functions. by Neil Schemenauer · 23 years ago
  87. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 23 years ago
  88. 0c1ceaf Simon Budig's patch (posted by me): by Michael W. Hudson · 23 years ago
  89. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  90. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  91. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  92. b6c1d52 SF patch #443759: Add Interface to readline's add_history by Guido van Rossum · 23 years ago
  93. 0daad59 Patch #462122: add readline startup and pre_event hooks. by Martin v. Löwis · 23 years ago
  94. 52d55a3 Cleaned up the docstring for readline.set_completer(). by Fred Drake · 23 years ago
  95. 353ae58 SF Patch #432457 by Jason Tishler: support for readline 4.2. by Guido van Rossum · 23 years ago
  96. b0e51b2 Clean up the unsightly mess around the readline header files. We now always: by Guido van Rossum · 24 years ago
  97. 5a53019 Part of SF patch #102409 by jlt63 to support building these modules by Guido van Rossum · 24 years ago
  98. 1ea64ea Supporting rl_library_version is more trouble than it's worth -- by Guido van Rossum · 24 years ago
  99. 6c0f33f Add a definition of rl_library_version. Reported by jpettit@sourceforge. by Guido van Rossum · 24 years ago
  100. 174efc9 Use PyOS_setsig() instead of directly calling signal() or sigaction(). by Guido van Rossum · 24 years ago