summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Changes for Windows NT -- this time it works, with Tcl4.1p1 (p1!!!) etc.Guido van Rossum1996-08-131-16/+28
| | | | | | - Use ckalloc(), ckfree() everywhere. - Default FREECAST to (char *). - Added comment with Tcl/Tk version info.
* Include "mymath.h" instead of manually declaring math functions.Guido van Rossum1996-08-081-2/+4
|
* Added lstrip() and rstrip().Guido van Rossum1996-08-081-17/+93
| | | | | | Extended split() (and hence splitfields(), which is the same function) to support an optional third parameter giving the maximum number of delimiters to parse.
* Need config.h (for Win etc.)Guido van Rossum1996-08-081-0/+4
|
* Added hack to get it to compile on AIX.Guido van Rossum1996-08-081-0/+5
|
* Rearrange include headers (needed on some platforms).Guido van Rossum1996-08-081-1/+1
|
* Hack for Mac (where fabs is not usable as a function pointer).Guido van Rossum1996-08-081-0/+5
|
* Add optional casts to free() calls. (Jack)Guido van Rossum1996-08-081-5/+24
| | | | Set Tk variable argv0 to classname passed in to Tkapp_New. (Fred)
* Rationalized instructions for _tkinter.cGuido van Rossum1996-08-081-17/+12
|
* Also remove *.sl (AIX shared libs) in make clean.Guido van Rossum1996-08-081-1/+1
|
* RemovedGuido van Rossum1996-08-081-33/+0
|
* Latest AIX changes from VladGuido van Rossum1996-08-082-11/+131
|
* Re-install aix files (what happened?)Guido van Rossum1996-08-083-0/+568
|
* removed old fileGuido van Rossum1996-08-081-122/+0
|
* Use Tcl/Tk 7.5/4.1 by default.Guido van Rossum1996-08-011-2/+2
|
* Changes for AIX shared libsGuido van Rossum1996-07-312-2/+9
|
* getprogramname --> Py_GetProgramNameGuido van Rossum1996-07-311-3/+3
|
* DESTLIB and MACHDESTLIB are now derived from variables set by the Makefile.Guido van Rossum1996-07-311-8/+10
| | | | Clarified some comments.
* Collect together all detailed installation directories.Guido van Rossum1996-07-311-2/+13
|
* Don't make an exception for NeXT (BBUM says it's no longer needed).Guido van Rossum1996-07-301-1/+1
| | | | | (But hypot() should really be defined in a separate file, triggered by configure.)
* Remove "." from default path. Also rearrange so that SITEPATH comesGuido van Rossum1996-07-301-2/+2
| | | | after DESTPATH.
* Don't have "." in the default path.Guido van Rossum1996-07-301-2/+2
|
* Converted to new styleGuido van Rossum1996-07-301-70/+70
|
* Operators like __add__Guido van Rossum1996-07-301-0/+242
|
* Some NeXT changes (default certain symbols to others)Guido van Rossum1996-07-301-0/+12
|
* Added operator.c. Moved errno.c.Guido van Rossum1996-07-301-6/+7
| | | | Changes to PYTHONPATH so it includes VERSION
* Refinements to installation, now uses $(VERSION) etc.Guido van Rossum1996-07-301-4/+5
|
* Added version number to destination.Guido van Rossum1996-07-241-14/+16
| | | | | | | Forget about the trick to create directories through dependencies -- it's impossible to get it right in the light of parallellizing Make implementations and the inability to specify dependencies between directories (because creating the subdirectory modifies the parent).
* Added Sam Rushing's errno moduleGuido van Rossum1996-07-242-0/+562
|
* Converted to new style names by Skip MontanaroGuido van Rossum1996-07-242-322/+319
|
* Different lines for bsddb module.Guido van Rossum1996-07-241-3/+3
|
* Added simple-minded (i.e. leaking :-) putenv() interface, if os has it.Guido van Rossum1996-07-231-0/+27
|
* Added 3rd optional argument to translate(), a string of characters to delete.Guido van Rossum1996-07-231-11/+60
| | | | Added maketrans(), a utility to create a translation table.
* Added Jim Fulton's "asharedmodule" targetGuido van Rossum1996-07-211-1/+17
|
* Use INT_MAX/LONG_MAX instead of non-ANSI LONG_BITGuido van Rossum1996-07-211-5/+4
|
* New submission by Fred Drake.Guido van Rossum1996-07-211-775/+1102
|
* New style names for getprogramname and getargcargvGuido van Rossum1996-07-211-6/+6
|
* Rewritten keys() and has_key() to avoid memory leaks.Guido van Rossum1996-07-211-11/+17
|
* complex -> Py_complexGuido van Rossum1996-07-211-56/+56
|
* Slightly different Windows ifdefsGuido van Rossum1996-06-282-5/+5
|
* added comments about tcl/tk -l optionsGuido van Rossum1996-06-281-1/+3
|
* Added plock() system call.Guido van Rossum1996-06-281-1/+25
| | | | Changed test for Windows times() emulation.
* aix sharedlib helpersGuido van Rossum1996-06-262-0/+155
|
* Added CWI copyright.Guido van Rossum1996-06-261-18/+46
| | | | | | | | Updated some comments. Fixed bug in Merge() called with NULL args. Get rid of TkDefaultAppName() -- it is not used anywhere. Pass error message on when Appinit fails. Create/Delete FileHandler assume fd is a socket on Windows.
* changed windows test symbols; removed debug printf from socketsGuido van Rossum1996-06-262-26/+26
|
* Made comment for getprogramname() more helpful.Guido van Rossum1996-06-201-1/+2
|
* More rational support for Windows (tested on Roj's NT 3.5 machine only).Guido van Rossum1996-06-201-141/+117
| | | | Use PyArg_ParseTuple() where it makes sense.
* Clear waitpid() status arg in case there's no process to report withGuido van Rossum1996-06-191-1/+1
| | | | WNOHANG set.
* Added more entries to create required target subdirectories for sharedinstall.Guido van Rossum1996-06-171-2/+14
|
* Test for zero-length argument in capitalize().Guido van Rossum1996-06-171-1/+1
|