summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add warning about exceptions in __del__ being ignored.Guido van Rossum1996-08-092-0/+8
|
* Insert "./" in front of pathname when it contains no '/' (if USE_SHLIB)Guido van Rossum1996-08-091-0/+6
|
* Optimizations by Sjoerd:Guido van Rossum1996-08-091-81/+172
| | | | | - define tp_getattro, tp_setattro - use precreated string objects for most common exceptions and method names
* Support for tp_getattro, tp_setattro (Sjoerd)Guido van Rossum1996-08-093-0/+33
|
* Use pre-created string objects for most common exceptionsGuido van Rossum1996-08-091-2/+8
| | | | (especially IndexError which is caught by 'for')
* Correct wrong calculation of pow(0.0, 0.0, negative_number)Guido van Rossum1996-08-091-5/+6
|
* Added tp_getattro, tp_setattro (Sjoerd)Guido van Rossum1996-08-091-2/+4
|
* New AIX-NOTESGuido van Rossum1996-08-091-0/+144
|
* New AIX-NOTESGuido van Rossum1996-08-091-61/+0
|
* This is the third time I check in this change :-(Guido van Rossum1996-08-081-2/+1
| | | | | Don't use assignments into inst.__dict__ to restore instance variables; use setattr() instead.
* 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
|
* This commit was manufactured by cvs2svn to create tag 'r14beta2'.v1.4b2cvs2svn1996-08-081-0/+1
|
* Re-install aix files (what happened?)Guido van Rossum1996-08-083-0/+568
|
* removed old fileGuido van Rossum1996-08-081-122/+0
|
* Changes necessary for AIX.Guido van Rossum1996-08-081-0/+15
|
* Added casts from unsigned char to char when calling rds_object() onGuido van Rossum1996-08-081-2/+2
| | | | frozen code.
* Removed unused var; added error check for ``lambda: x=1''.Guido van Rossum1996-08-081-1/+5
|
* Include mymath.h instead of declaring prototypes for math functions.Guido van Rossum1996-08-081-5/+13
| | | | Fix leak and unchecked error in complex().
* Correctly use Py_PROTO, not obsolete PROTO.Guido van Rossum1996-08-081-1/+1
|
* Renamed errors. -> pyerrors.h (for Mac, where Errors.h is a system header).Guido van Rossum1996-08-081-1/+1
|
* Typo: PySequence_Lenth -> PySequence_Length.Guido van Rossum1996-08-081-1/+1
|
* For method=POST, append a query string from the environment or fromGuido van Rossum1996-08-081-1/+7
| | | | sys.argv[1], effectively merging the fields.
* Add optional third parameter to split() and splitfields(), giving theGuido van Rossum1996-08-082-8/+44
| | | | | maximum number of delimiters to parse; e.g. splitfields("a,b,c,d", ",", 2) -> ["a", "b", "c,d"].
* Changed split() to be compatible with changes to string.split(): theGuido van Rossum1996-08-081-4/+24
| | | | | | optional third argument gives a maximum number of delimiters to parse. The new function splitx() is like split() but returns a list containing the words as well as the delimiters.
* Slight update of doc string -- suggest default args for __init__, noGuido van Rossum1996-08-081-4/+6
| | | | longer complain that __getinitargs__ is an ugly name.
* Restore 1.3 behavior of gettempdir(): if tempdir is already set, believe it.Guido van Rossum1996-08-081-0/+2
|
* Don't use 'false'; use '0'.Guido van Rossum1996-08-081-1/+1
|
* stupid typo in latest fix ('Name' should be 'name')Guido van Rossum1996-08-082-2/+2
|
* Need to import * from typesGuido van Rossum1996-08-082-4/+2
|
* Added test for math moduleGuido van Rossum1996-08-083-0/+183
|
* Use fcntl.h instead of sys/fcntl.h; use h2py.py from Tools/scriptsGuido van Rossum1996-08-082-8/+8
|
* New AIX specific subdirsGuido van Rossum1996-08-0820-0/+2850
|
* Changed to use 8-byte doubles. Also re-enabled optimizations, 68020Jack Jansen1996-08-071-1342/+1330
| | | | codegen.
* Moved build.html to building.htmlJack Jansen1996-08-071-1/+1
|
* Changed instructions for new releases of cwgusi, waste and tcl/tk,Jack Jansen1996-08-061-209/+274
| | | | moved some urls around, reformatted.
* New releases of CWGUSI, Waste and Tcl/Tk.Jack Jansen1996-08-0612-4894/+4899
|
* Updated for new tcl/tk releaseJack Jansen1996-08-061-3048/+3093
|
* GUSI mkdir() lost its dummy second argJack Jansen1996-08-061-0/+4
|
* New waste releaseJack Jansen1996-08-061-1/+2
|
* Upgraded to Waste 1.2fJack Jansen1996-08-063-98/+114
|