summaryrefslogtreecommitdiffstats
path: root/Modules/readline.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #22773: fix failing test with old readline versions due to issue #19884.Antoine Pitrou2014-11-041-0/+3
* Backed out changeset 7c19f1f792c6Benjamin Peterson2014-08-201-2/+5
* don't call rl_initialize when stdout is not a ttyBenjamin Peterson2014-08-201-5/+2
* Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off")Victor Stinner2014-07-241-1/+5
* Issue #19884: readline: Disable the meta modifier key if stdout is not aVictor Stinner2014-07-241-2/+13
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
* Issue #20374: delete spurious empty lineNed Deily2014-02-061-1/+0
* Issue #20374: Avoid compiler warnings when compiling readline with libedit.Ned Deily2014-02-061-0/+9
* new plan: just remove typecasts (closes #20374)Benjamin Peterson2014-01-241-4/+4
* use new readline function types (closes #20374)Benjamin Peterson2014-01-241-3/+3
* Issue #18458: Prevent crashes with newer versions of libedit. Its readlineNed Deily2013-10-121-15/+25
* Issue #17289: The readline module now plays nicer with external modules or ap...Antoine Pitrou2013-05-061-8/+19
* Back out fix for issue #13886; it introduced a new bug in interactive readlin...Nadeem Vawda2013-02-021-1/+1
* Issue #13886: Fix input() to not strip out supposedly-invalid input bytes.Nadeem Vawda2013-01-271-1/+1
* Merged revisions 87356 via svnmerge fromR. David Murray2010-12-181-2/+15
* Merged revisions 83670 via svnmerge fromMark Dickinson2010-08-031-19/+26
* Merged revisions 83667 via svnmerge fromMark Dickinson2010-08-031-12/+34
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-509/+509
* Strip out extraneous whitespace, cast a some `const char *` to `void *` whenBrett Cannon2010-05-041-21/+21
* Add guard around the prototype for completion_matches to enableRonald Oussoren2010-02-111-0/+3
* Some platforms have rl_completion_append_character but not rl_completion_supp...Antoine Pitrou2009-10-261-0/+2
* Issue #5833: Fix extra space character in readline completion with theAntoine Pitrou2009-10-191-3/+4
* Issue 6877: this patch makes it possible to link the readline extensionRonald Oussoren2009-09-201-0/+70
* Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)'Matthias Klose2009-04-051-2/+2
* Issue #4204: Fixed module build errors on FreeBSD 4.Martin v. Löwis2008-11-041-0/+8
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-5/+5
* Renamed PyString to PyBytesChristian Heimes2008-05-261-5/+5
* readline module cleanupChristian Heimes2007-11-121-99/+90
* Only set rl_completion_display_matches_hook if thereMartin v. Löwis2007-11-121-31/+38
* Patch #1388440: Add set_completion_display_matches_hook andMartin v. Löwis2007-09-041-0/+77
* SF #1703270, add missing declaration in readline.c to avoid compiler warning.Neal Norwitz2007-04-191-1/+3
* [Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a tim...Andrew M. Kuchling2006-09-071-1/+7
* Fix memory leaks in some conditions.Neal Norwitz2006-07-161-9/+11
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix parse errors in readline module when compiling without threads.Georg Brandl2005-09-291-0/+2
* In a threads-disabled build, typing Ctrl-C into a raw_input() crashed,Michael W. Hudson2005-04-071-0/+4
* Fixes forMichael W. Hudson2005-03-301-26/+23
* Be a bit more accurate.Michael W. Hudson2005-03-301-1/+2
* I don't think it's particularly accurate to say Guido is maintainingMichael W. Hudson2005-03-301-3/+0
* Patch #1093585: raise a ValueError for negative history items inMartin v. Löwis2005-02-271-0/+10
* Rename a static variable "history_length" to "_history_length".Hye-Shik Chang2004-11-251-6/+6
* This is Michiel de Hoon's patch, as attached to the bug report:Michael W. Hudson2004-10-071-7/+13
* SF #1015517, get readline to compile with older compilersNeal Norwitz2004-08-251-3/+4
* Fail fatally if strdup fails.Martin v. Löwis2004-08-201-0/+4
* Patch #914291: Restore locale while readline is running.Martin v. Löwis2004-08-181-0/+8
* fix a couple problems with the last patch picked up by Michael HudsonSkip Montanaro2004-08-161-12/+8
* Add get_history_item and replace_history_item functions to the readlineSkip Montanaro2004-08-151-0/+67
* PyThreadState_Swap(NULL) didn't do what I thought it did. FixesMichael W. Hudson2004-07-081-1/+1
* This closes patch:Michael W. Hudson2004-07-071-8/+89
* stupid, stupid, stupid... raw_input() already supports readline() if theSkip Montanaro2004-05-241-23/+0