summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Collapse)AuthorAgeFilesLines
* * Makefile adapted to changes below.Guido van Rossum1992-08-041-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 Rossum1992-08-031-7/+54
|
* fileobject.c: fix fatal bug in getline() (forgot to initialize fp now)Guido van Rossum1992-07-311-0/+1
|
* Makefile: added instann rules and $(*DEST*) defines.Guido van Rossum1992-07-061-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 forGuido van Rossum1992-06-231-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() withoutGuido van Rossum1992-06-191-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 copyrightGuido van Rossum1992-04-061-1/+1
|
* Copyright for 1992 addedGuido van Rossum1992-04-0513-13/+13
|
* Don't allow assignment to attributes named __*__Guido van Rossum1992-04-051-2/+16
|
* lint fixGuido van Rossum1992-03-272-3/+11
|
* answer lint's complaintsGuido van Rossum1992-03-271-5/+13
|
* Lint stuff (involves casts, yuck!)Guido van Rossum1992-03-271-27/+33
|
* LintGuido van Rossum1992-03-271-1/+2
| | | | ./
* LintGuido van Rossum1992-03-271-1/+2
|
* Fix lint bugGuido van Rossum1992-03-271-1/+3
|
* Lint...Guido van Rossum1992-03-271-0/+1
|
* Silence lintGuido van Rossum1992-03-271-2/+2
|
* Quiet lintGuido van Rossum1992-03-271-3/+2
|
* Change error handling. Call clearerr() more often.Guido van Rossum1992-03-041-15/+11
|
* Include modsupport.h for getargs().Guido van Rossum1992-01-272-0/+2
|
* Get rid of redundant type checks.Guido van Rossum1992-01-261-53/+26
| | | | Define % operator similar to int%int.
* Add prototypes.Guido van Rossum1992-01-191-105/+148
| | | | Change / and % to match divmod.
* Make / and % do the same as divmod.Guido van Rossum1992-01-191-117/+67
|
* New function gettupleslice(v, i, j).Guido van Rossum1992-01-141-0/+12
|
* Changed to 2's complement bitwise ops. Got rid of ZABS etc.Guido van Rossum1992-01-141-306/+195
|
* Different shift implementation.Guido van Rossum1992-01-141-2/+34
|
* Added READONLY specifier to data members.Guido van Rossum1992-01-141-2/+2
|
* Added f_lasti and f_lineno members.Guido van Rossum1992-01-141-0/+4
|
* Fixed bug in long masking ops.Guido van Rossum1991-12-311-28/+31
|
* Change error messages for impossible assignment slightly.Guido van Rossum1991-12-241-2/+4
|
* Fix assignment of a list to a slice of itself.Guido van Rossum1991-12-241-1/+10
|
* Added message to EOFError.Guido van Rossum1991-12-241-1/+2
|
* Explicitly check for weird values after calling pow().Guido van Rossum1991-12-161-0/+9
|
* Add "varargs" attribute.Guido van Rossum1991-12-161-5/+20
|
* Use new exceptions.Guido van Rossum1991-12-104-28/+18
|
* Use IOError.Guido van Rossum1991-12-101-1/+1
|
* Use AttributeError.Guido van Rossum1991-12-101-1/+1
|
* Improved exceptions.Guido van Rossum1991-12-101-13/+15
|
* Formulate better error strings.Guido van Rossum1991-12-101-5/+5
|
* The cl_bases member of a class object is now never NULL.Guido van Rossum1991-12-101-8/+15
|
* Made the sign use one's complement; implemented shifting and masking operators.Guido van Rossum1991-11-191-83/+413
|
* Deleted unused local variable.Guido van Rossum1991-11-191-1/+0
|
* Call write(fileno(fp), ...) instead of fwrite for LARGE writes.Guido van Rossum1991-11-121-1/+11
|
* Added shift and mask ops.Guido van Rossum1991-10-241-1/+107
|
* Changed convert to add '0' or '0x' prefix for oct/hex.Guido van Rossum1991-10-241-2/+15
| | | | Added NULL function pointers for shift and mask ops.
* Added NULL function pointers for shift and mask ops.Guido van Rossum1991-10-241-0/+6
|
* Implemented __methods__ attributeGuido van Rossum1991-10-201-0/+27
|
* Added count() method.Guido van Rossum1991-10-201-8/+24
| | | | Changed some conditional INCREFs into XINCREFs.
* Finally implemented divmod().Guido van Rossum1991-10-201-3/+25
|
* Add several secret __*__ attributesGuido van Rossum1991-10-201-9/+50
|