Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * Makefile adapted to changes below. | Guido van Rossum | 1992-08-04 | 1 | -2/+9 |
| | | | | | | | | | | | * 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 | ||||
* | listobject.c: added optional cmp function to list.sort(). | Guido van Rossum | 1992-08-03 | 1 | -7/+54 |
| | |||||
* | fileobject.c: fix fatal bug in getline() (forgot to initialize fp now) | Guido van Rossum | 1992-07-31 | 1 | -0/+1 |
| | |||||
* | Makefile: added instann rules and $(*DEST*) defines. | Guido van Rossum | 1992-07-06 | 1 | -48/+46 |
| | | | | | fileobject.c: report more moeaningful error for I/O on closed files; user getargs() everywhere. | ||||
* | Changes for new UNIX-specific built-in module 'select' and new header for | Guido van Rossum | 1992-06-23 | 1 | -0/+11 |
| | | | | | interfaces to variants of select() system call, "myselect.h". This includes adding fileno() methods to files, sockets and stdwin. | ||||
* | sysmodule.c: calling sys.settrace() or sys.setprofile() without | Guido van Rossum | 1992-06-19 | 1 | -0/+1 |
| | | | | | | | | | arguments crashed in INCREF() calls which should be XINCREF() calls. timemodule.c: fix for SEQUENT port (sys/select, struct timezone) by Jaap Vermeulen xxobject.c: include modsupport.h | ||||
* | New copyright | Guido van Rossum | 1992-04-06 | 1 | -1/+1 |
| | |||||
* | Copyright for 1992 added | Guido van Rossum | 1992-04-05 | 13 | -13/+13 |
| | |||||
* | Don't allow assignment to attributes named __*__ | Guido van Rossum | 1992-04-05 | 1 | -2/+16 |
| | |||||
* | lint fix | Guido van Rossum | 1992-03-27 | 2 | -3/+11 |
| | |||||
* | answer lint's complaints | Guido van Rossum | 1992-03-27 | 1 | -5/+13 |
| | |||||
* | Lint stuff (involves casts, yuck!) | Guido van Rossum | 1992-03-27 | 1 | -27/+33 |
| | |||||
* | Lint | Guido van Rossum | 1992-03-27 | 1 | -1/+2 |
| | | | | ./ | ||||
* | Lint | Guido van Rossum | 1992-03-27 | 1 | -1/+2 |
| | |||||
* | Fix lint bug | Guido van Rossum | 1992-03-27 | 1 | -1/+3 |
| | |||||
* | Lint... | Guido van Rossum | 1992-03-27 | 1 | -0/+1 |
| | |||||
* | Silence lint | Guido van Rossum | 1992-03-27 | 1 | -2/+2 |
| | |||||
* | Quiet lint | Guido van Rossum | 1992-03-27 | 1 | -3/+2 |
| | |||||
* | Change error handling. Call clearerr() more often. | Guido van Rossum | 1992-03-04 | 1 | -15/+11 |
| | |||||
* | Include modsupport.h for getargs(). | Guido van Rossum | 1992-01-27 | 2 | -0/+2 |
| | |||||
* | Get rid of redundant type checks. | Guido van Rossum | 1992-01-26 | 1 | -53/+26 |
| | | | | Define % operator similar to int%int. | ||||
* | Add prototypes. | Guido van Rossum | 1992-01-19 | 1 | -105/+148 |
| | | | | Change / and % to match divmod. | ||||
* | Make / and % do the same as divmod. | Guido van Rossum | 1992-01-19 | 1 | -117/+67 |
| | |||||
* | New function gettupleslice(v, i, j). | Guido van Rossum | 1992-01-14 | 1 | -0/+12 |
| | |||||
* | Changed to 2's complement bitwise ops. Got rid of ZABS etc. | Guido van Rossum | 1992-01-14 | 1 | -306/+195 |
| | |||||
* | Different shift implementation. | Guido van Rossum | 1992-01-14 | 1 | -2/+34 |
| | |||||
* | Added READONLY specifier to data members. | Guido van Rossum | 1992-01-14 | 1 | -2/+2 |
| | |||||
* | Added f_lasti and f_lineno members. | Guido van Rossum | 1992-01-14 | 1 | -0/+4 |
| | |||||
* | Fixed bug in long masking ops. | Guido van Rossum | 1991-12-31 | 1 | -28/+31 |
| | |||||
* | Change error messages for impossible assignment slightly. | Guido van Rossum | 1991-12-24 | 1 | -2/+4 |
| | |||||
* | Fix assignment of a list to a slice of itself. | Guido van Rossum | 1991-12-24 | 1 | -1/+10 |
| | |||||
* | Added message to EOFError. | Guido van Rossum | 1991-12-24 | 1 | -1/+2 |
| | |||||
* | Explicitly check for weird values after calling pow(). | Guido van Rossum | 1991-12-16 | 1 | -0/+9 |
| | |||||
* | Add "varargs" attribute. | Guido van Rossum | 1991-12-16 | 1 | -5/+20 |
| | |||||
* | Use new exceptions. | Guido van Rossum | 1991-12-10 | 4 | -28/+18 |
| | |||||
* | Use IOError. | Guido van Rossum | 1991-12-10 | 1 | -1/+1 |
| | |||||
* | Use AttributeError. | Guido van Rossum | 1991-12-10 | 1 | -1/+1 |
| | |||||
* | Improved exceptions. | Guido van Rossum | 1991-12-10 | 1 | -13/+15 |
| | |||||
* | Formulate better error strings. | Guido van Rossum | 1991-12-10 | 1 | -5/+5 |
| | |||||
* | The cl_bases member of a class object is now never NULL. | Guido van Rossum | 1991-12-10 | 1 | -8/+15 |
| | |||||
* | Made the sign use one's complement; implemented shifting and masking operators. | Guido van Rossum | 1991-11-19 | 1 | -83/+413 |
| | |||||
* | Deleted unused local variable. | Guido van Rossum | 1991-11-19 | 1 | -1/+0 |
| | |||||
* | Call write(fileno(fp), ...) instead of fwrite for LARGE writes. | Guido van Rossum | 1991-11-12 | 1 | -1/+11 |
| | |||||
* | Added shift and mask ops. | Guido van Rossum | 1991-10-24 | 1 | -1/+107 |
| | |||||
* | Changed convert to add '0' or '0x' prefix for oct/hex. | Guido van Rossum | 1991-10-24 | 1 | -2/+15 |
| | | | | Added NULL function pointers for shift and mask ops. | ||||
* | Added NULL function pointers for shift and mask ops. | Guido van Rossum | 1991-10-24 | 1 | -0/+6 |
| | |||||
* | Implemented __methods__ attribute | Guido van Rossum | 1991-10-20 | 1 | -0/+27 |
| | |||||
* | Added count() method. | Guido van Rossum | 1991-10-20 | 1 | -8/+24 |
| | | | | Changed some conditional INCREFs into XINCREFs. | ||||
* | Finally implemented divmod(). | Guido van Rossum | 1991-10-20 | 1 | -3/+25 |
| | |||||
* | Add several secret __*__ attributes | Guido van Rossum | 1991-10-20 | 1 | -9/+50 |
| |