summaryrefslogtreecommitdiffstats
path: root/Modules/readline.c
Commit message (Expand)AuthorAgeFilesLines
* Patch #512981: Update readline input stream on sys.stdin/out change.Martin v. Löwis2002-10-261-7/+13
* GNU readline() mistakenly sets the LC_CTYPE locale.Guido van Rossum2002-10-091-0/+17
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-73/+59
* patch #562492 - prevent duplicate lines in historySkip Montanaro2002-06-111-2/+19
* SF #558432: Prevent Annoying ' ' from readline (Holker Krekel).Guido van Rossum2002-05-301-0/+1
* #544265, Remove warnings for passing const to free()Neal Norwitz2002-04-211-1/+1
* Get rid of warnings due to changing to METH_NOARGSNeal Norwitz2002-03-311-5/+5
* Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS.Neal Norwitz2002-03-251-23/+10
* Add get_history_item, get_current_history_length, and redisplay functions.Neil Schemenauer2002-03-241-2/+61
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-0/+4
* Simon Budig's patch (posted by me):Michael W. Hudson2002-02-131-0/+3
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-2/+4
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-281-2/+2
* SF patch #443759: Add Interface to readline's add_historyGuido van Rossum2001-10-191-0/+18
* Patch #462122: add readline startup and pre_event hooks.Martin v. Löwis2001-09-301-24/+127
* Cleaned up the docstring for readline.set_completer().Fred Drake2001-08-011-1/+1
* SF Patch #432457 by Jason Tishler: support for readline 4.2.Guido van Rossum2001-07-101-0/+4
* Clean up the unsightly mess around the readline header files. We nowGuido van Rossum2001-04-131-24/+1
* Part of SF patch #102409 by jlt63 to support building these modulesGuido van Rossum2001-01-101-2/+6
* Supporting rl_library_version is more trouble than it's worth --Guido van Rossum2000-10-021-8/+1
* Add a definition of rl_library_version. Reported by jpettit@sourceforge.Guido van Rossum2000-09-201-0/+1
* Use PyOS_setsig() instead of directly calling signal() or sigaction().Guido van Rossum2000-09-161-5/+12
* Add three prototypes for functions in history.h to shut up gcc -Wall.Guido van Rossum2000-09-011-0/+3
* Peter Schneider-Kamp <nowonder@nowonder.de>:Fred Drake2000-08-311-7/+7
* Removed unnecessary local variable -- gave warning on gcc -WallMoshe Zadka2000-08-041-2/+0
* Use METH_OLDARGS instead of numeric constant 0 in method def. tablesAndrew M. Kuchling2000-08-031-7/+8
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-8/+12
* Removed all instances of RETSIGTYPE from the source code: signalTim Peters2000-07-231-5/+2
* ANSIfication of function-pointers and declarations. Also, make sure toThomas Wouters2000-07-221-2/+5
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-2/+2
* added history file truncation based upon code from Johannes Zellner.Skip Montanaro2000-07-191-0/+42
* ANSI-ficationPeter Schneider-Kamp2000-07-101-44/+15
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-1/+1
* added read_history_file and write_history_fileSkip Montanaro2000-07-061-0/+50
* Trent Mick: use size_t instead of int where appropriate (call_readline()).Guido van Rossum2000-06-281-1/+1
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-3/+11
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-5/+5
* Patches by Kannan Vijayan:Guido van Rossum1999-11-181-4/+108
* setup_readline(): Added a comment about memory leak (reported byBarry Warsaw1999-01-291-1/+5
* Patches by William Lewis for Nextstep descendants.Guido van Rossum1999-01-271-0/+1
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Bernard Herzog pointed out that rl_parse_and_bind modifies itsGuido van Rossum1998-12-041-2/+9
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-0/+9
* Correct bug doc string (discovered by Berthold Hoellmann):Guido van Rossum1998-05-201-1/+1
* Make new gcc -Wall happyGuido van Rossum1998-04-101-0/+8
* Add unistd.h for isatty().Guido van Rossum1998-01-191-0/+4
* Darn. When thread support is disabled, the BEGIN/END macros don'tGuido van Rossum1997-10-101-0/+3
* Add get_line_buffer() and insert_text(), suggested by Michael McLay.Guido van Rossum1997-10-071-0/+40