summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* * classobject.[ch], {float,long,int}object.c, bltinmodule.c:Guido van Rossum1992-08-142-1/+1
| | | | | | coercion is now completely generic. * ceval.c: for instances, don't coerce for + and *; * reverses arguments if left one is non-instance numeric and right one sequence.
* Changes so that user-defined classes can implement operations invokedGuido van Rossum1992-08-122-3/+6
| | | | | by special syntax: you can now define your own numbers, sequences and mappings.
* * Makefile: cosmeticsGuido van Rossum1992-08-052-4/+95
| | | | | | | | | | | | | | | | | | | | | | | | | * socketmodule.c: get rid of makepair(); fix makesocketaddr to fix broken recvfrom() * socketmodule: get rid of getStrarg() * ceval.h: move eval_code() to new file eval.h, so compile.h is no longer needed. * ceval.c: move thread comments to ceval.h; always make save/restore thread functions available (for dynloaded modules) * cdmodule.c, listobject.c: don't include compile.h * flmodule.c: include ceval.h * import.c: include eval.h instead of ceval.h * cgen.py: add forground(); noport(); winopen(""); to initgl(). * bltinmodule.c, socketmodule.c, fileobject.c, posixmodule.c, selectmodule.c: adapt to threads (add BGN/END SAVE macros) * stdwinmodule.c: adapt to threads and use a special stdwin lock. * pythonmain.c: don't include getpythonpath(). * pythonrun.c: use BGN/END SAVE instead of direct calls; also more BGN/END SAVE calls etc. * thread.c: bigger stack size for sun; change exit() to _exit() * threadmodule.c: use BGN/END SAVE macros where possible * timemodule.c: adapt better to threads; use BGN/END SAVE; add longsleep internal function if BSD_TIME; cosmetics
* * Makefile adapted to changes below.Guido van Rossum1992-08-042-0/+54
| | | | | | | | | | | * split pythonmain.c in two: most stuff goes to pythonrun.c, in the library. * new optional built-in threadmodule.c, build upon Sjoerd's thread.{c,h}. * new module from Sjoerd: mmmodule.c (dynamically loaded). * new module from Sjoerd: sv (svgen.py, svmodule.c.proto). * new files thread.{c,h} (from Sjoerd). * new xxmodule.c (example only). * myselect.h: bzero -> memset * select.c: bzero -> memset; removed global variable
* * myselect.h: bzero -> memsetGuido van Rossum1992-08-041-1/+1
| | | | * select.c: bzero -> memset; removed global variable
* Changes for new UNIX-specific built-in module 'select' and new header forGuido van Rossum1992-06-231-0/+80
| | | | | interfaces to variants of select() system call, "myselect.h". This includes adding fileno() methods to files, sockets and stdwin.
* added BYTE, CHAR and unsigned variantsGuido van Rossum1992-06-031-0/+8
|
* Added declaration for mkvalue()Guido van Rossum1992-04-131-0/+1
|
* Copyright for 1992 addedGuido van Rossum1992-04-0542-42/+42
|
* lint (added flushline() interface)Guido van Rossum1992-03-271-0/+1
|
* Make it lint-freeGuido van Rossum1992-03-271-0/+1
|
* *** empty log message ***Guido van Rossum1992-03-241-62/+44
|
* Moved definition of search path DELIM here (from sysmodule.c).Guido van Rossum1992-03-231-0/+9
|
* Added definitions of sys_trace and sys_profileGuido van Rossum1992-03-231-0/+2
|
* Initial revisionGuido van Rossum1992-02-261-0/+43
|
* New getargs() function. Define macros with conventional names,Guido van Rossum1992-01-271-0/+28
| | | | except get*str*arg --> get*Str*arg; get*str*arg fetches a C string.
* Initial revisionGuido van Rossum1992-01-191-0/+26
|
* Added typedef for longobject and declarations for long_{format,scan}.Guido van Rossum1992-01-191-0/+5
|
* Move the longobject typedef to longobject.h.Guido van Rossum1992-01-191-9/+4
| | | | Remove some functions that need not be exported.
* New function gettupleslice(v, i, j).Guido van Rossum1992-01-141-0/+1
|
* Change tb_here() prototype.Guido van Rossum1992-01-141-1/+1
|
* Added UNPACK_VARARG.Guido van Rossum1992-01-141-0/+1
|
* Added f_lasti and f_lineno members.Guido van Rossum1992-01-141-0/+2
|
* Added SystemExit.Guido van Rossum1991-12-312-0/+2
|
* Added ImportError.Guido van Rossum1991-12-242-0/+2
|
* Regularize exceptions.Guido van Rossum1991-12-162-22/+18
|
* Added UNPACK_ARG.Guido van Rossum1991-12-161-1/+3
|
* Add "varargs" attribute.Guido van Rossum1991-12-161-3/+5
|
* SyntaxError.Guido van Rossum1991-12-162-0/+2
|
* Added _GLOBAL opcodes.Guido van Rossum1991-12-101-0/+2
|
* New exceptions.Guido van Rossum1991-12-102-12/+16
|
* Added shift and mask ops.Guido van Rossum1991-10-242-3/+15
|
* Added shifting and masking ops to as_number structGuido van Rossum1991-10-241-0/+6
|
* Added some new tokensGuido van Rossum1991-10-201-3/+9
|
* newclassobject gets a third parameter (optional class name)Guido van Rossum1991-10-201-1/+1
|
* Added/moved dict2 interfaces.Guido van Rossum1991-08-161-1/+3
|
* Change getbuiltin interface to get the name as an object.Guido van Rossum1991-08-161-1/+1
|
* New syntaxGuido van Rossum1991-07-271-32/+35
|
* Added call_object interfaceGuido van Rossum1991-07-271-0/+2
|
* Generalize to macintosh.Guido van Rossum1991-06-241-2/+6
|
* Define 'macintosh' if THINK_C is defined.Guido van Rossum1991-06-241-0/+4
|
* Remove StopPrint hackGuido van Rossum1991-06-071-2/+0
|
* printobject now returns an error codeGuido van Rossum1991-06-071-2/+2
|
* Add "close" function parameter to newopenfileobject().Guido van Rossum1991-06-071-1/+2
|
* Export getdict2key() interface.Guido van Rossum1991-06-071-0/+1
|
* Export newcodeobject() interface.Guido van Rossum1991-06-041-0/+1
|
* Initial revisionGuido van Rossum1991-06-041-0/+33
|
* Added declarations for dnewlongobject and dgetlongvalue.Guido van Rossum1991-06-031-0/+2
|
* Added nonzero to number methodsGuido van Rossum1991-05-141-0/+1
|
* Added wdigit and stwodigits typedefs, and changed prototypes.Guido van Rossum1991-05-141-6/+5
|