Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | initmodule3 -> initmodule3 | Guido van Rossum | 1995-01-09 | 1 | -1/+2 |
| | |||||
* | totally revamped | Guido van Rossum | 1995-01-07 | 1 | -77/+112 |
| | |||||
* | do not call newmethodobject directly | Guido van Rossum | 1995-01-07 | 1 | -5/+3 |
| | |||||
* | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 1 | -2/+2 |
| | | | | | | bltinmodule.c: fixed coerce() nightmare in ternary pow(). modsupport.c (initmodule2): pass METH_FREENAME flag to newmethodobject(). pythonrun.c: move flushline() into and around print_error(). | ||||
* | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 39 | -92/+103 |
| | | | | | Setup.in: clarified Tk comments somewhat. structmodule.c: use memcpy() instead of double precision assignment. | ||||
* | Added 1995 copyright. | Guido van Rossum | 1995-01-04 | 1 | -2/+2 |
| | | | | | | object.h: made sizes and refcnts signed ints. stringobject.h: make getstrsize() signed int. methodobject.h: add METH_VARARGS and METH_FREENAME flag bit definitions. | ||||
* | Another bulky set of minor changes. | Guido van Rossum | 1995-01-02 | 18 | -85/+222 |
| | | | | | Note addition of gethostbyaddr() and improved repr() for sockets, renaming of md5.md5() to md5.new(), and fixing of leaks in threads. | ||||
* | Added missing initialization | Jack Jansen | 1994-12-14 | 1 | -1/+1 |
| | |||||
* | added timer and file callbacks and global mainloop and quit fns | Guido van Rossum | 1994-11-10 | 1 | -2/+156 |
| | |||||
* | don't use backslashes for continuation lines | Guido van Rossum | 1994-11-10 | 1 | -5/+5 |
| | |||||
* | don't fail moving empty list of shared modules | Guido van Rossum | 1994-11-10 | 1 | -1/+1 |
| | |||||
* | clarifications | Guido van Rossum | 1994-10-20 | 1 | -13/+38 |
| | |||||
* | add hypot() | Guido van Rossum | 1994-10-20 | 1 | -0/+2 |
| | |||||
* | always make sharedmods | Guido van Rossum | 1994-10-20 | 1 | -1/+1 |
| | |||||
* | makesetup should use $cc not cc | Guido van Rossum | 1994-10-20 | 1 | -1/+1 |
| | |||||
* | distinguish between getpgrp and setpgrp arg requirements | Guido van Rossum | 1994-10-20 | 1 | -3/+3 |
| | |||||
* | Free was called with a struct as argument instead of a field from the | Sjoerd Mullender | 1994-10-13 | 1 | -2/+2 |
| | | | | struct. | ||||
* | Escaped $(LDSHARED) in a string. | Sjoerd Mullender | 1994-10-13 | 1 | -2/+2 |
| | |||||
* | new style | Guido van Rossum | 1994-10-10 | 1 | -280/+279 |
| | |||||
* | Add pointer to GPL-free MP library | Guido van Rossum | 1994-10-06 | 1 | -1/+6 |
| | |||||
* | Removed this module (will be distributed with Jack's package) | Guido van Rossum | 1994-10-06 | 1 | -5/+0 |
| | |||||
* | Fix getpythonpath() fix; never #include frozen.c. | Guido van Rossum | 1994-10-05 | 1 | -4/+3 |
| | |||||
* | Save static pointer to malloc'ed buffer | Guido van Rossum | 1994-10-05 | 1 | -8/+8 |
| | |||||
* | * Modules/xxmodule.c: integrated with xxobject.c by Jack | Guido van Rossum | 1994-09-29 | 3 | -13/+169 |
| | | | | * Modules/(posix,socket}module.c: more NT changes | ||||
* | Various layout changes; some extra warnings; for IRIX, IRIX 5 is the default. | Guido van Rossum | 1994-09-21 | 1 | -18/+31 |
| | |||||
* | Specified libraries for flmodule. | Sjoerd Mullender | 1994-09-21 | 1 | -1/+1 |
| | |||||
* | Put a comment start symbol at the start of a comment that lacked one. | Sjoerd Mullender | 1994-09-15 | 1 | -1/+1 |
| | |||||
* | * various modules: #include "Python.h" and remove most remporary | Guido van Rossum | 1994-09-14 | 6 | -67/+20 |
| | | | | renaming hacks | ||||
* | * Modules/Setup.in: define PYTHONPATH using COREPYTHONPATH for | Guido van Rossum | 1994-09-12 | 2 | -2/+4 |
| | | | | | | extensions; add -lm to math module definition * Modules/Makefile.pre.in: remove *.so and so_locations on clobber | ||||
* | If an argument on a Setup line starts with `$', treat it as a library, | Sjoerd Mullender | 1994-09-12 | 1 | -0/+1 |
| | | | | but only if it does not end in a known suffix. | ||||
* | Support shared library creation. | Guido van Rossum | 1994-09-12 | 3 | -62/+128 |
| | |||||
* | Steen Lumholt's termios interface. | Guido van Rossum | 1994-09-12 | 1 | -0/+258 |
| | |||||
* | Added _getpty interface. | Guido van Rossum | 1994-09-12 | 1 | -0/+30 |
| | |||||
* | Setup.in: added tkinter; rearranged the definition of PYTHONPATH so | Guido van Rossum | 1994-09-07 | 5 | -198/+248 |
| | | | | | | | | | | | | | | 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. | ||||
* | Added minmax function. | Sjoerd Mullender | 1994-09-06 | 1 | -0/+27 |
| | |||||
* | 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 | 4 | -217/+1496 |
| | | | | | contributed a curses interface. Setup.in uses .c instead of .o now. | ||||
* | * Modules/makesetup: bugfix: add objects from sources to OBJS | Guido van Rossum | 1994-08-30 | 1 | -0/+3 |
| | |||||
* | Merge back to main trunk | Guido van Rossum | 1994-08-30 | 1 | -1/+1 |
| | |||||
* | Move #endif for NT | Guido van Rossum | 1994-08-29 | 1 | -1/+1 |
| | |||||
* | Makefile.pre.in: add $(OPT) to link command | Guido van Rossum | 1994-08-29 | 5 | -105/+128 |
| | | | | | | | audioop.c: fix for MPW config.c.in: save original argc/argv for Lance rotormodule.c: new coding conventions timemodule.c: add casts for Lance | ||||
* | * Modules/Setup.*: removed all except Setup.in (huh? I thought | Guido van Rossum | 1994-08-23 | 2 | -2/+3 |
| | | | | | | | | I'd done that already?!); disable gdbm by default * configure.in, */Makefile*.in: OPT can now be specified in the env at configure time and will then be put in all Makefiles as default * */Makefile*.in: remove lib*.a before adding to it | ||||
* | * Modules/signalmodule.c: added pause(). | Guido van Rossum | 1994-08-23 | 1 | -1/+13 |
| | |||||
* | * Modules/makesetup: support C++ files now; these should be given | Guido van Rossum | 1994-08-23 | 1 | -1/+36 |
| | | | | | as file.C or file.cc or file.c++; C files can be given as file.c (instead of file.o, which is still supported) | ||||
* | * Modules/posixmodule.c: some more NT changes | Guido van Rossum | 1994-08-23 | 1 | -3/+20 |
| | |||||
* | * Modules/config.c.in: change mac specific things | Guido van Rossum | 1994-08-23 | 1 | -4/+6 |
| | |||||
* | Move all code from version.c into config.c | Guido van Rossum | 1994-08-19 | 2 | -2/+37 |
| | |||||
* | Changes for Mac | Guido van Rossum | 1994-08-19 | 1 | -0/+4 |
| | |||||
* | Changes to make it work and compile on NT, by Mark Hammond. | Guido van Rossum | 1994-08-18 | 2 | -173/+185 |
| | | | | (NT changes for posixmodule.c re-invented by Guido.) |