summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Added (dummy) divmod and (functional) abs.Guido van Rossum1991-05-051-10/+37
| | | | Fixed comments in number methods list
* Renamed class methods to instance methods (which they are)Guido van Rossum1991-05-051-59/+59
|
* Add warning about Lambert's bug.Guido van Rossum1991-04-161-0/+3
|
* Rename class methods to instance methods (at least where user-visible)Guido van Rossum1991-04-161-3/+3
|
* Added external interface to readline, for raw_input().Guido van Rossum1991-04-041-34/+71
|
* Optimized single-character strings gotten from s[i].Guido van Rossum1991-04-041-13/+23
|
* Added 'softspace' interface to replace 'needspace' printing hack.Guido van Rossum1991-04-041-1/+18
|
* Change ugly 'class member' to more normal 'instance'.Guido van Rossum1991-04-041-19/+19
|
* Swapped list_ass_item and list_ass_slice to satisfy Standard C.Guido van Rossum1991-04-031-18/+18
|
* Optimized stringitem.Guido van Rossum1991-03-061-1/+13
|
* Added repeat (for list*integet).Guido van Rossum1991-03-061-1/+99
| | | | Added methods remove(), reverse() and index().
* Fixed read() and readline() to do arbitrarily long reads.Guido van Rossum1991-03-061-37/+178
| | | | | And readline() now reads null bytes correctly. Added tell(), seek() and flush().
* Added copyright notice.Guido van Rossum1991-02-1914-0/+336
|
* Hack to open resource fork on the Mac: open(filename, '*rb').Guido van Rossum1991-02-131-2/+10
|
* Fix stringcompare when strings contain null bytes.Guido van Rossum1991-02-131-2/+6
|
* Changed bogus ref to textobject into xxobject.Guido van Rossum1991-01-021-1/+1
|
* Fixed a bit (still no warranties).Guido van Rossum1991-01-021-3/+16
|
* Think C 4.0 fixes a bug in 3.0 that we programmed around.Guido van Rossum1991-01-021-2/+2
|
* Return -1 for errors.Guido van Rossum1990-12-202-2/+2
|
* Added <errno.h>Guido van Rossum1990-12-201-0/+5
|
* "Compiling" versionGuido van Rossum1990-12-2013-278/+449
|
* Function objects no longer contain a parse tree node, but intermediateGuido van Rossum1990-11-181-38/+13
| | | | code.
* Fix wrong #ifdef.Guido van Rossum1990-11-181-1/+1
|
* Fixed resizestring() to work if reference tracing is turned on.Guido van Rossum1990-11-181-6/+13
| | | | | The realloc() call would move the list head without fixing the pointers to in the the chain of allocated objects...
* Moved prototyes for fmod and pow, and don't use them for THINK C.Guido van Rossum1990-11-021-2/+5
|
* Removed redundant prototype for err_nomem().Guido van Rossum1990-11-021-2/+4
| | | | Added check for negative refcnt in DELREF.
* Added external interface to sort a list.Guido van Rossum1990-10-301-0/+15
|
* Added some prototypes.Guido van Rossum1990-10-301-2/+2
|
* Added getmodulename() public interface.Guido van Rossum1990-10-261-0/+11
|
* Fix zero division checks: return if it occurs!Guido van Rossum1990-10-261-3/+3
|
* Reads of zero should be legal!Guido van Rossum1990-10-261-1/+6
|
* New errors.Guido van Rossum1990-10-217-126/+137
|
* Added __dict to module getattr.Guido van Rossum1990-10-211-6/+21
| | | | New errors.
* CHanged errors somewhat.Guido van Rossum1990-10-211-3/+3
|
* New error handling in getattr().Guido van Rossum1990-10-142-5/+5
|
* New error handling.Guido van Rossum1990-10-141-36/+37
|