Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | setup_readline(): Added a comment about memory leak (reported by | Barry Warsaw | 1999-01-29 | 1 | -1/+5 |
| | | | | | | | | | 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*. | ||||
* | Patches by William Lewis for Nextstep descendants. | Guido van Rossum | 1999-01-27 | 1 | -0/+1 |
| | |||||
* | Add DL_EXPORT() to all modules that could possibly be used | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
| | | | | on BeOS or Windows. | ||||
* | Bernard Herzog pointed out that rl_parse_and_bind modifies its | Guido van Rossum | 1998-12-04 | 1 | -2/+9 |
| | | | | argument string (bad function!), so we make a temporary copy. | ||||
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 1 | -0/+9 |
| | |||||
* | Correct bug doc string (discovered by Berthold Hoellmann): | Guido van Rossum | 1998-05-20 | 1 | -1/+1 |
| | | | | get_line_buffer() does not take an optional argument. | ||||
* | Make new gcc -Wall happy | Guido van Rossum | 1998-04-10 | 1 | -0/+8 |
| | |||||
* | Add unistd.h for isatty(). | Guido van Rossum | 1998-01-19 | 1 | -0/+4 |
| | |||||
* | Darn. When thread support is disabled, the BEGIN/END macros don't | Guido van Rossum | 1997-10-10 | 1 | -0/+3 |
| | | | | | | 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. | ||||
* | Add get_line_buffer() and insert_text(), suggested by Michael McLay. | Guido van Rossum | 1997-10-07 | 1 | -0/+40 |
| | |||||
* | Set the completer's word break characters appropriate for Python. | Guido van Rossum | 1997-09-26 | 1 | -0/+4 |
| | |||||
* | Reordered and reformatted, and added some cool new features: | Guido van Rossum | 1997-09-26 | 1 | -62/+183 |
| | | | | | | | | | | 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! | ||||
* | Renamed Py_input_hook to PyOS_InputHook. | Guido van Rossum | 1997-08-11 | 1 | -2/+2 |
| | | | | Also cleaned out some CR's left by the VC++ editor. | ||||
* | New mechanism for GNU readline interface, via module | Guido van Rossum | 1997-08-05 | 1 | -0/+122 |