summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* getlonglongargs --> getlonglongargGuido van Rossum1991-09-101-1/+1
|
* Check for write errors after printing a valueGuido van Rossum1991-07-271-2/+10
|
* The print operation now returns status!Guido van Rossum1991-07-011-1/+2
|
* Change cmpobject() to coerce numerical values before comparing themGuido van Rossum1991-07-011-2/+17
|
* printobject now returns an error codeGuido van Rossum1991-06-071-6/+7
| | | | | Remove superfluous err_nomem() call ,
* printobject now returns an error codeGuido van Rossum1991-06-071-3/+5
| | | | Remove superfluous err_nomem() call
* printobject now returns an error codeGuido van Rossum1991-06-078-79/+58
|
* Export float_buf_repr() interface, for marshalling of floats.Guido van Rossum1991-06-041-1/+1
|
* In support of popen(), file objects are now parametrized with a closeGuido van Rossum1991-06-041-11/+32
| | | | | | function on creation. (There's a funny thing about the return value of the close function that should be resolved.) Also added 'isatty' method.