- 10 Ock, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
under CYGWIN as shared libraries (DLLs).
-
- 02 Eki, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
readline doesn't have it before readline 2.2 and there's no compile-time way to find out which readline version is in use. Sigh. GNU readline sucks.
-
- 20 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 16 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This fixes the first half of bug #110611: the immediate exit when ^C is hit when readline and threads are configured. Also added a new module variable, readline.library_version.
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 31 Agu, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Remove some of GCC's warning in -Wstrict-prototypes mode. This closes SourceForge patch #101342.
-
- 04 Agu, 2000 1 kayıt (commit)
-
-
Moshe Zadka yazdı
-
- 03 Agu, 2000 2 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 23 Tem, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
handlers "return void", according to ANSI C. Removed the new Py_RETURN_FROM_SIGNAL_HANDLER macro. Left RETSIGTYPE in the config stuff, because it's not clear to me that others aren't relying on it (e.g., extension modules).
-
- 22 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
return something if RETSIGTYPE is not void, in functions that are defined as returning RETSIGTYPE.
-
- 21 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;)
-
- 19 Tem, 2000 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 10 Tem, 2000 1 kayıt (commit)
-
-
Peter Schneider-Kamp yazdı
-
- 09 Tem, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 06 Tem, 2000 1 kayıt (commit)
-
-
Skip Montanaro yazdı
XXX should perhaps support history truncation as well
-
- 28 Haz, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 03 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
For more comments, read the patches@python.org archives. For documentation read the comments in mymalloc.h and objimpl.h. (This is not exactly what Vladimir posted to the patches list; I've made a few changes, and Vladimir sent me a fix in private email for a problem that only occurs in debug mode. I'm also holding back on his change to main.c, which seems unnecessary to me.)
-
- 29 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PyArg_ParseTuple() format string arguments as possible.
-
- 18 Kas, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
new: readline.get_begidx() -> int gets the beginning index in the command line string delimiting the tab-completion scope. This would probably be used from within a tab-completion handler readline.get_endidx() -> int gets the ending index in the command line string delimiting the tab-completion scope. This would probably be used from within a tab-compeltion handler readline.set_completer_delims(string) -> None sets the delimiters used by readline as word breakpoints for tab-completion readline.get_completer_delims() -> string gets the delimiters used by readline as word breakpoints for tab-completion fixed: readline.get_line_buffer() -> string doesnt cause a debug message every other call
-
- 29 Ock, 1999 1 kayıt (commit)
-
-
Barry Warsaw yazdı
Purify) being caused by a bug in the readline library. Nothing we can do about it. Cause: readline_initialize_everything() throws away the return value from rl_read_init_file(), but that happens to be the last reference to a dynamically allocated char*.
-
- 27 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Ara, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
on BeOS or Windows.
-
Guido van Rossum yazdı
argument string (bad function!), so we make a temporary copy.
-
- 04 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
get_line_buffer() does not take an optional argument.
-
- 10 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Ock, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 10 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
save and restore the tstate, but explicitly calling PyEval_SaveThread() does reset it! While I think about how to fix this for real, here's a fix that avoids getting a fatal error.
-
- 07 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Eyl, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
set_completer(function) parse_and_bind(string) read_init_file(filename) The first is the most exciting feature: with an appropriate Python completer function, it can do dynamic completion based on the contents of your namespace!
-
- 11 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Also cleaned out some CR's left by the VC++ editor.
-
- 05 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-