Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch by Charles Waldman to implement an optional nlines argument to | Guido van Rossum | 1999-01-05 | 1 | -2/+18 |
| | | | | w.scroll(). (It then calls wscrl(win, nlines) instead of scoll(win).) | ||||
* | Chris Herborth discovered a typo in the arrow key symbols. | Guido van Rossum | 1998-12-23 | 1 | -1/+2 |
| | |||||
* | Add DL_EXPORT() to all modules that could possibly be used | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
| | | | | on BeOS or Windows. | ||||
* | Make the version variable static (it has no business being exported). | Guido van Rossum | 1998-10-07 | 1 | -1/+1 |
| | |||||
* | Apply two changes, systematically: | Guido van Rossum | 1997-10-01 | 1 | -5/+1 |
| | | | | | | | | | | | | | | | | | (1) Use PyErr_NewException("module.class", NULL, NULL) to create the exception object. (2) Remove all calls to Py_FatalError(); instead, return or ignore the errors -- the import code now checks PyErr_Occurred() after calling a module's init function, so it's no longer a fatal error for the initialization to fail. Also did some small cleanups, e.g. removed unnecessary test for "already initialized" from initfpectl(), and unified initposix()/initnt(). I haven't checked this very thoroughly, so while the changes are pretty trivial -- beware of untested code! | ||||
* | Avoid warning from gcc on Linux about dropping const. | Guido van Rossum | 1997-05-09 | 1 | -1/+1 |
| | |||||
* | Keep gcc -Wall happy. | Guido van Rossum | 1996-12-05 | 1 | -3/+11 |
| | |||||
* | Include ncurses.h where needed | Guido van Rossum | 1996-02-25 | 1 | -0/+5 |
| | |||||
* | Added some (method) casts. | Sjoerd Mullender | 1995-03-17 | 1 | -42/+42 |
| | |||||
* | more fixes by Steve Clift | Guido van Rossum | 1995-02-24 | 1 | -61/+154 |
| | |||||
* | bump version, add __version__ back in | Guido van Rossum | 1995-02-17 | 1 | -4/+7 |
| | |||||
* | Steve Clifts version | Guido van Rossum | 1995-02-17 | 1 | -406/+434 |
| | |||||
* | clear errors between failing calls to PyArg_Parse | Guido van Rossum | 1995-02-07 | 1 | -1/+13 |
| | |||||
* | cosmetic changes so these modules will work with the strict new naming scheme | Guido van Rossum | 1995-01-10 | 1 | -1/+1 |
| | |||||
* | * various modules: #include "Python.h" and remove most remporary | Guido van Rossum | 1994-09-14 | 1 | -5/+1 |
| | | | | renaming hacks | ||||
* | Setup.in: added tkinter; rearranged the definition of PYTHONPATH so | Guido van Rossum | 1994-09-07 | 1 | -1/+4 |
| | | | | | | | | | | | | | | that the module-specific components are in the section for that module. cursesmodule.c: patched it so it actually works. tkintermodule.c: call Py_AtExit instead of atexit(). signalmodule.c: converted to new naming style; added BGN/END SAVE around pause() call. socketmodule.c: added setblocking() after Tommy Burnette. | ||||
* | Lance's release 1.1 -- fixes some problems with 1.0 | Guido van Rossum | 1994-08-31 | 1 | -36/+52 |
| | |||||
* | Release 1.0 by Lance | Guido van Rossum | 1994-08-31 | 1 | -1/+131 |
| | |||||
* | Lance has converted his modules to the new naming conventions, and | Guido van Rossum | 1994-08-30 | 1 | -0/+1298 |
contributed a curses interface. Setup.in uses .c instead of .o now. |