Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix bug introduced by Jack (duplicate def of qread) | Guido van Rossum | 1992-08-13 | 1 | -1/+1 |
| | |||||
* | Modified to allow other threads to run in a multithreaded environment. | Jack Jansen | 1992-08-13 | 4 | -1/+63 |
| | |||||
* | DO_TIMES must now be defined in the Makefile | Guido van Rossum | 1992-08-12 | 1 | -4/+0 |
| | |||||
* | Made module regex optional; added optional module nis. | Guido van Rossum | 1992-08-12 | 1 | -2/+14 |
| | |||||
* | Added error handling and free resources. | Guido van Rossum | 1992-08-12 | 1 | -54/+81 |
| | |||||
* | NIS interface by Fred Gansevles <Fred.Gansevles@cs.utwente.nl>. | Guido van Rossum | 1992-08-12 | 1 | -0/+292 |
| | |||||
* | Last-minute changes for release. | Guido van Rossum | 1992-08-10 | 1 | -1/+1 |
| | |||||
* | Makefile, Configure.py: ##ask --> ##[el]if[yes|no] | Guido van Rossum | 1992-08-09 | 1 | -28/+30 |
| | | | | posixmodule.c: waitpid() is separate | ||||
* | Replaced max=-1 by max = -1. | Guido van Rossum | 1992-08-06 | 1 | -1/+1 |
| | |||||
* | * Makefile: cosmetics | Guido van Rossum | 1992-08-05 | 9 | -82/+201 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * 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 | ||||
* | Sometimes, recvfrom() returns an empty address; this is not an error. | Guido van Rossum | 1992-08-05 | 1 | -26/+10 |
| | | | | Also, get rid of makepair() in favor of mkvalue(). | ||||
* | * Makefile adapted to changes below. | Guido van Rossum | 1992-08-04 | 4 | -7/+403 |
| | | | | | | | | | | | * 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 -> memset | Guido van Rossum | 1992-08-04 | 1 | -12/+12 |
| | | | | * select.c: bzero -> memset; removed global variable | ||||
* | cdmodule.c: 2 minor changes by Sjoerd. | Guido van Rossum | 1992-08-03 | 1 | -3/+13 |
| | |||||
* | New rotor methods: setkey(), encryptmore() and decryptmore(). | Guido van Rossum | 1992-08-02 | 1 | -8/+89 |
| | |||||
* | Changes to make it compile under SGI -- revamped new/dealloc a bit. | Guido van Rossum | 1992-07-31 | 1 | -39/+25 |
| | |||||
* | New file rotormodule.c (by Lance Ellinghouse). | Guido van Rossum | 1992-07-31 | 1 | -0/+735 |
| | |||||
* | Added conversions to/from ADPCM(-4); renamed adpcm to adpcm3 (what it | Guido van Rossum | 1992-07-06 | 1 | -3/+192 |
| | | | | really was). | ||||
* | added WE_KEY detail format to stdwinmodule.c. | Guido van Rossum | 1992-06-30 | 1 | -0/+6 |
| | |||||
* | Added qgetfd() to cstubs for GL. | Guido van Rossum | 1992-06-29 | 2 | -0/+280 |
| | | | | Added new module dbm (interface to ndbm). | ||||
* | Added adpcm2lin and lin2adpcm. | Guido van Rossum | 1992-06-23 | 1 | -0/+135 |
| | |||||
* | Use "myselect.h" as intended. | Guido van Rossum | 1992-06-23 | 1 | -5/+1 |
| | |||||
* | Changes for new UNIX-specific built-in module 'select' and new header for | Guido van Rossum | 1992-06-23 | 5 | -19/+230 |
| | | | | | interfaces to variants of select() system call, "myselect.h". This includes adding fileno() methods to files, sockets and stdwin. | ||||
* | Some UNIX types want the exact size of the address structure | Guido van Rossum | 1992-06-12 | 1 | -1/+35 |
| | |||||
* | Fix for SEQUENT by Jaap Vermeulen | Guido van Rossum | 1992-06-12 | 1 | -0/+8 |
| | |||||
* | Fix bug in ulaw2lin for 4-byte values | Guido van Rossum | 1992-06-05 | 1 | -1/+1 |
| | |||||
* | Added {get,set}sockopt(). allowbroadcast is now obsolete. | Guido van Rossum | 1992-06-05 | 1 | -2/+54 |
| | |||||
* | fixed bugs in generic_setattr (returned NULL instead of | Guido van Rossum | 1992-06-03 | 1 | -2/+2 |
| | | | | -1 for errors) | ||||
* | Added 1992 to copyright notice | Guido van Rossum | 1992-06-03 | 1 | -1/+1 |
| | |||||
* | added readscaled() function. | Guido van Rossum | 1992-06-03 | 1 | -11/+86 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-06-03 | 1 | -0/+408 |
| | |||||
* | append the default path to $PYTHONPATH; ignore empty $PYTHONPATH. | Guido van Rossum | 1992-06-03 | 1 | -5/+19 |
| | | | | default DATE is now 3 Jun 1992 | ||||
* | Initial revision | Guido van Rossum | 1992-06-01 | 1 | -0/+574 |
| | |||||
* | Mark's name is Callow, not Callows | Guido van Rossum | 1992-05-15 | 1 | -1/+1 |
| | |||||
* | Added support for CD module | Guido van Rossum | 1992-05-15 | 1 | -0/+7 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-05-15 | 1 | -0/+57 |
| | |||||
* | Added gete?[gu]id functions | Guido van Rossum | 1992-05-15 | 1 | -0/+44 |
| | |||||
* | Wanneer er geen disk in de speler zit falen sommige routines. De | Guido van Rossum | 1992-05-06 | 1 | -58/+58 |
| | | | | | | | | | exceptie heeft nu in dat geval als argument "no disc in player", behalve wanneer de bibliotheek routine errno zet. In dat laatste geval wordt (nog steeds) err_errno() gebruikt. Wanneer een routine uit de bibliotheek faalt wordt nu altijd een IOError gegenereerd. Een RuntimeError treedt alleen op bij verkeerde argumenten. | ||||
* | Don't use \ for continuation lines; minor changes. | Guido van Rossum | 1992-05-06 | 1 | -10/+4 |
| | |||||
* | Return more structured data in some cases | Guido van Rossum | 1992-04-15 | 1 | -16/+13 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-04-13 | 1 | -0/+889 |
| | |||||
* | Use mkvalue() instead of painfully constructing values | Guido van Rossum | 1992-04-13 | 1 | -80/+12 |
| | |||||
* | change the date to say >= 6 Apr 1992 | Guido van Rossum | 1992-04-08 | 1 | -1/+1 |
| | |||||
* | in form_dealloc, only hide the form if it's visible | Guido van Rossum | 1992-04-08 | 1 | -1/+2 |
| | |||||
* | Don't use NULL as 0 int! | Guido van Rossum | 1992-04-06 | 1 | -1/+1 |
| | |||||
* | Copyright for 1992 added | Guido van Rossum | 1992-04-05 | 10 | -10/+10 |
| | |||||
* | Don't define DO_TIMES (now in posixmodule.c) | Guido van Rossum | 1992-04-05 | 1 | -9/+1 |
| | |||||
* | Added times() (from time) | Guido van Rossum | 1992-04-05 | 1 | -2/+50 |
| | |||||
* | Copyright for 1992 added | Guido van Rossum | 1992-04-05 | 1 | -1/+1 |
| | |||||
* | lint | Guido van Rossum | 1992-03-27 | 1 | -1/+1 |
| |