summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Fix comments in string_as_sequenceGuido van Rossum1991-06-041-7/+7
|
* Finally implement tuple*number. From now on all sequence typesGuido van Rossum1991-06-041-1/+33
| | | | | | must (pretend to) support all operations except assignments; if you don't want to support an operation you have to provide a dummy function that raises an exception...
* Added dnewlongobject(), function to convert double to long int.Guido van Rossum1991-06-031-0/+39
|
* Call clearerr() after EOF seen.Guido van Rossum1991-06-031-0/+1
|
* Fix off-by-one error in long_repr.Guido van Rossum1991-05-281-5/+50
| | | | Implement long_pow.
* Fix special cases in pow()Guido van Rossum1991-05-281-0/+12
|
* Many small changesGuido van Rossum1991-05-141-17/+48
|
* Added nonzero testGuido van Rossum1991-05-141-0/+8
|
* Added nonzero testGuido van Rossum1991-05-141-0/+8
|
* Enabled (and fixed) newvarobject()Guido van Rossum1991-05-051-5/+1
|
* Initial revisionGuido van Rossum1991-05-051-0/+900
|
* Added divmod and abs, fixed negative powersGuido van Rossum1991-05-051-18/+70
|