summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Moved older news to HISTORY fileGuido van Rossum1994-10-062-655/+659
|
* Oops! version numbers again!Guido van Rossum1994-10-064-4/+4
|
* Oops -- version number!Guido van Rossum1994-10-061-1/+1
|
* Change status of fixed bugsGuido van Rossum1994-10-061-5/+6
|
* Hopefully the last edits for 1.1Guido van Rossum1994-10-063-38/+219
|
* Add pointer to GPL-free MP libraryGuido van Rossum1994-10-061-1/+6
|
* For release 1.1Guido van Rossum1994-10-063-55/+329
|
* Only require autoconf 1.8Guido van Rossum1994-10-061-1/+1
|
* Micro portability changesGuido van Rossum1994-10-062-1/+4
|
* changed script interpreterBarry Warsaw1994-10-061-1/+1
|
* Removed this module (will be distributed with Jack's package)Guido van Rossum1994-10-061-5/+0
|
* Add simpler __getattr__ example and document __call__Guido van Rossum1994-10-062-4/+78
|
* Added missing \end{datadesc}.Sjoerd Mullender1994-10-062-0/+2
|
* Removed description of class.init() method.Guido van Rossum1994-10-062-44/+194
| | | | Added news about new operator overloading and __getattr__ etc.
* Moved author and date to boilerplate.tex.Guido van Rossum1994-10-0614-90/+132
| | | | | | | Added copyright.tex to all files. Added descr of check_interval to libsys.tex. Corrected lotsa typos in tut.tex (thanks to George M. Sipe). Corrected mktuple (should be newtupleobject) example in ext.tex.
* Lots of things added. README written (mostly).Guido van Rossum1994-10-054-36/+352
|
* Import posixpath for freeze scriptGuido van Rossum1994-10-051-0/+1
|
* Fix getpythonpath() fix; never #include frozen.c.Guido van Rossum1994-10-051-4/+3
|
* Save static pointer to malloc'ed bufferGuido van Rossum1994-10-051-8/+8
|
* Plug memory leak for code objectsGuido van Rossum1994-10-051-0/+1
|
* Get rid of freeze (now its own directory).Guido van Rossum1994-10-036-25/+345
| | | | Added some new demos. Fixed a few others.
* Don't search for *.so modules since we can't handle them!Guido van Rossum1994-10-031-2/+1
|
* Add check for unknown modulesGuido van Rossum1994-10-031-1/+7
|
* Totally new "freeze" program.Guido van Rossum1994-10-036-560/+561
|
* Jack's last version (now I'm supposed to get it working :-)Guido van Rossum1994-10-031-0/+576
|
* Ignore empty markers.Sjoerd Mullender1994-10-031-1/+5
|
* Add files by JackGuido van Rossum1994-10-025-0/+2040
|
* Make it work under MPW too.Guido van Rossum1994-10-011-3/+2
|
* Added documentation on the aifc module.Sjoerd Mullender1994-09-294-0/+362
|
* Fix bug in formatting of new questionsGuido van Rossum1994-09-291-1/+3
|
* Got rid of history (was beginning to get silly).Guido van Rossum1994-09-291-100/+10
| | | | Removed a few diagram breaks since Kees' program is now cleverer
* Cosmetic changesGuido van Rossum1994-09-291-14/+17
|
* config.c: add MacOS moduleGuido van Rossum1994-09-292-38/+52
| | | | macosmodule.c: lots of updates (though playing sound can still hang :-( )
* * Modules/xxmodule.c: integrated with xxobject.c by JackGuido van Rossum1994-09-293-13/+169
| | | | * Modules/(posix,socket}module.c: more NT changes
* * Python/ceval.c, Include/ceval.h: promote MakePendingCalls toGuido van Rossum1994-09-292-10/+48
| | | | | | | | | | global: Py_MakePendingCalls. Also guard against recursive calls * Include/classobject.h, Objects/classobject.c, Python/{ceval.c,bltinmodule.c}: entirely redone operator overloading. The rules for class instances are now much more relaxed than for other built-in types (whose coerce must still return two objects of the same type)
* * Python/{modsupport.c,getargs.c,Makefile.in},Guido van Rossum1994-09-293-341/+588
| | | | | | | Include/modsupport.h: moved getargs() to its own file and re-implemented it entirely to support optional arguments, multiple arguments without surrounding parentheses (when called as newgetargs()), and better error messages
* * Python/errors.c (err_clear): clear interpreter stack traceGuido van Rossum1994-09-291-1/+5
|
* * Python/pythonrun.c: add string "Python" to fatal error messageGuido van Rossum1994-09-291-1/+1
|
* * Python/pythonmain.c: fatal error if can't alloc mem for -cGuido van Rossum1994-09-291-1/+2
| | | | string
* * Python/traceback.c: security fix -- check for buffer oveflowGuido van Rossum1994-09-291-1/+6
| | | | before concatenating sys.path item and module name
* * Include/classobject.h, Objects/classobject.c, Python/ceval.c:Guido van Rossum1994-09-286-204/+219
| | | | | | | | | | | | | | | | | | entirely redone operator overloading. The rules for class instances are now much more relaxed than for other built-in types (whose coerce must still return two objects of the same type) * Objects/floatobject.c: add overflow check when converting float to int and implement truncation towards zero using ceil/float * Objects/longobject.c: change ValueError to OverflowError when converting to int * Objects/rangeobject.c: modernized * Objects/stringobject.c: use HAVE_LIMITS instead of __STDC__ * Objects/xxobject.c: changed to use new style (not finished?)
* * Parser/intrcheck.c: make 'interrupted' global (forgot forGuido van Rossum1994-09-281-1/+1
| | | | whom...)
* ceval.h: added Py_MakePendingCalls()Guido van Rossum1994-09-284-1/+4
| | | | | | classobject.h: added instancebinop() modsupport.h: added newgetargs() rename1.h: removed Py_FPROTO
* Fix various potential buffer overrun problems.Guido van Rossum1994-09-261-9/+18
|
* point perl to ~/bin/perlBarry Warsaw1994-09-231-1/+1
|
* New version: 1.14 (previous oine was misnumbered 1.12).Guido van Rossum1994-09-231-64/+532
| | | | Lots of new questions about everything.
* Added obfuxcated lambda's by Ulf BerteltGuido van Rossum1994-09-231-0/+30
|
* Various layout changes; some extra warnings; for IRIX, IRIX 5 is the default.Guido van Rossum1994-09-211-18/+31
|
* Specified libraries for flmodule.Sjoerd Mullender1994-09-211-1/+1
|
* Fix bug if tmpcache is NoneGuido van Rossum1994-09-211-1/+2
|