summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* __builtins__ mods (and sys_checkinterval for ceval.c)Guido van Rossum1995-01-098-45/+90
|
* Alpha OSF/1 fixGuido van Rossum1995-01-091-1/+4
|
* initmodule3 -> initmodule3Guido van Rossum1995-01-091-1/+2
|
* api version checkingGuido van Rossum1995-01-092-17/+32
|
* remove nogus reload checkGuido van Rossum1995-01-091-5/+0
|
* sys.check_interval=x -> sys.setcheckinterval(x)Guido van Rossum1995-01-092-0/+14
|
* Used new getargs interface; added {Get,Set}FileInfo.Guido van Rossum1995-01-091-44/+77
|
* 1995 copyrightGuido van Rossum1995-01-085-10/+10
|
* New newmethodobject() interface takes struct methodlist pointerGuido van Rossum1995-01-071-15/+14
| | | | | instead of individual components; initmodule3() now has doc string argument as well
* Two independent chages:Guido van Rossum1995-01-071-27/+156
| | | | | (a) support import NAME.NAME...NAME; (b) support doc strings in modules, classes and function definitions
* Use new instancebinop interfaceGuido van Rossum1995-01-071-18/+18
|
* * Python/bltinmodule.c: restructured coerce(), divmod(), pow() toGuido van Rossum1995-01-071-52/+80
| | | | use new instancebinop interface
* Grammar changedGuido van Rossum1995-01-071-466/+480
|
* NT dlls have .pyd extension instead of .dllGuido van Rossum1995-01-071-2/+2
|
* * Objects/classobject.c: added 5th (function) parameter toGuido van Rossum1995-01-071-27/+49
| | | | | instancebinop, to support things like Rational * float; added documentation strings to classes and methods
* * Objects/methodobject.c: changed drastically, the object nowGuido van Rossum1995-01-071-27/+44
| | | | | contains a pointer to the struct methodlist (which must be static); added attributes __name__, __doc__ and __self__
* Added __doc__ attribute (alias func_doc), initialized from firstGuido van Rossum1995-01-071-1/+16
| | | | constant in code object if it is a string, else None
* initialize __doc__ to NoneGuido van Rossum1995-01-071-0/+2
|
* added getattr(), supporting __doc__ and _name__Guido van Rossum1995-01-071-2/+33
|
* attribute-less object is AttributeError, not TypeErrorGuido van Rossum1995-01-071-1/+1
|
* initmodule2 -> initmodule3 (with doc string)Guido van Rossum1995-01-071-1/+2
|
* totally revampedGuido van Rossum1995-01-071-77/+112
|
* do not call newmethodobject directlyGuido van Rossum1995-01-071-5/+3
|
* Changed since Grammar has changedGuido van Rossum1995-01-071-31/+32
|
* add 5th arg to instancebinopGuido van Rossum1995-01-071-1/+2
|
* added func_docGuido van Rossum1995-01-071-0/+1
|
* added ml_doc and changed newmethodlist interfaceGuido van Rossum1995-01-071-4/+5
|
* new tp_str and tp_doc members in type objectGuido van Rossum1995-01-071-0/+10
|
* changed import to support NAME.NAME...NAMEGuido van Rossum1995-01-071-1/+2
|
* New file -- creates FAQ.html.Guido van Rossum1995-01-041-0/+193
|
* Added 1995 to copyright message; added a few people to acks again...Guido van Rossum1995-01-044-12/+20
|
* Moved 1.1 and 1.1.1 news hereGuido van Rossum1995-01-041-0/+160
|
* Added clarifying commentGuido van Rossum1995-01-041-0/+2
|
* sys.stderr(...) should be sys.stderr.write(), of courseGuido van Rossum1995-01-041-1/+1
|
* copyright.tex: Add 1995 to copyright message.Guido van Rossum1995-01-0426-40/+134
| | | | | | | | | | | | | | | lib.tex: add libimp; remove bogus warning about lineii. libmath.tex: document hypot(). libmd5.tex: rename md5.md5() to md5.new(). libposix.tex: document chown(). libposixfile.tex: openfile() instead of fileopen(). libsocket.tex: document gethostbyaddr(). libtypes.tex: add footnote explaining why readline() keeps the newline. ref3.tex: correct typos, add back*quotes to index. ref4.tex: don't use \verb inside footnote. ref5.tex: explain repr() and str() and add them + back*quotes to index. ref6.tex: correct typo, don't use \verb in footnote. ref7.tex: don't use \verb in footnote.
* spam -> foo (etc.) in examplesGuido van Rossum1995-01-042-60/+60
|
* Added 1995 to copyright message.Guido van Rossum1995-01-0432-76/+93
| | | | | | 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 Rossum1995-01-0439-92/+103
| | | | | Setup.in: clarified Tk comments somewhat. structmodule.c: use memcpy() instead of double precision assignment.
* Added 1995 to copyright message.Guido van Rossum1995-01-0419-38/+38
|
* Added 1995 to copyright message.Guido van Rossum1995-01-0419-47/+50
| | | | | floatobject.c: fix hash(). methodobject.c: support METH_FREENAME flag bit.
* Added 1995 copyright.Guido van Rossum1995-01-0453-112/+116
| | | | | | 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.
* README: changed URL format to <URL:...>; added section on Tk.Guido van Rossum1995-01-048-78/+252
| | | | | | | Makefile.in: run config.status in "make recheck". configure.in: add test for hypot(). config.h.in, configure: since configure.in changed. rest: the usual boring stuff.
* * Objects/mappingobject.c (mappingremove): don't callGuido van Rossum1995-01-022-0/+6
| | | | lookmapping() for empty dictionary
* Another bulky set of minor changes.Guido van Rossum1995-01-0218-85/+222
| | | | | Note addition of gethostbyaddr() and improved repr() for sockets, renaming of md5.md5() to md5.new(), and fixing of leaks in threads.
* Think 6.0 versionGuido van Rossum1995-01-021-138/+75
|
* Lots of minor changes. Note for mappingobject.c: the hash table pointerGuido van Rossum1995-01-0212-96/+170
| | | | can now be NULL.
* Lots of changes, most minor (fatal() instead of abort(), use ofGuido van Rossum1995-01-0215-995/+1777
| | | | | | err_fetch/err_restore and so on). But... NOTE: import.c has been rewritten and all the DL stuff is now in the new file importdl.c.
* * Lib/test/test_b1.py: test eval() and execfile() with globals,Guido van Rossum1995-01-021-0/+13
| | | | locals arguments
* * Lib/mhlib.py: added movemessage(), copymessage(), added copyGuido van Rossum1995-01-021-8/+81
| | | | fallback for refilemessages(), and updated the docs
* The usual changes when a release is nearing...Guido van Rossum1995-01-029-1530/+2238
|