Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Export float_buf_repr() interface, for marshalling of floats. | Guido van Rossum | 1991-06-04 | 1 | -1/+1 |
| | |||||
* | In support of popen(), file objects are now parametrized with a close | Guido van Rossum | 1991-06-04 | 1 | -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_sequence | Guido van Rossum | 1991-06-04 | 1 | -7/+7 |
| | |||||
* | Finally implement tuple*number. From now on all sequence types | Guido van Rossum | 1991-06-04 | 1 | -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 Rossum | 1991-06-03 | 1 | -0/+39 |
| | |||||
* | Call clearerr() after EOF seen. | Guido van Rossum | 1991-06-03 | 1 | -0/+1 |
| | |||||
* | Fix off-by-one error in long_repr. | Guido van Rossum | 1991-05-28 | 1 | -5/+50 |
| | | | | Implement long_pow. | ||||
* | Fix special cases in pow() | Guido van Rossum | 1991-05-28 | 1 | -0/+12 |
| | |||||
* | Many small changes | Guido van Rossum | 1991-05-14 | 1 | -17/+48 |
| | |||||
* | Added nonzero test | Guido van Rossum | 1991-05-14 | 1 | -0/+8 |
| | |||||
* | Added nonzero test | Guido van Rossum | 1991-05-14 | 1 | -0/+8 |
| | |||||
* | Enabled (and fixed) newvarobject() | Guido van Rossum | 1991-05-05 | 1 | -5/+1 |
| | |||||
* | Initial revision | Guido van Rossum | 1991-05-05 | 1 | -0/+900 |
| | |||||
* | Added divmod and abs, fixed negative powers | Guido van Rossum | 1991-05-05 | 1 | -18/+70 |
| | |||||
* | Added (dummy) divmod and (functional) abs. | Guido van Rossum | 1991-05-05 | 1 | -10/+37 |
| | | | | Fixed comments in number methods list | ||||
* | Renamed class methods to instance methods (which they are) | Guido van Rossum | 1991-05-05 | 1 | -59/+59 |
| | |||||
* | Add warning about Lambert's bug. | Guido van Rossum | 1991-04-16 | 1 | -0/+3 |
| | |||||
* | Rename class methods to instance methods (at least where user-visible) | Guido van Rossum | 1991-04-16 | 1 | -3/+3 |
| | |||||
* | Added external interface to readline, for raw_input(). | Guido van Rossum | 1991-04-04 | 1 | -34/+71 |
| | |||||
* | Optimized single-character strings gotten from s[i]. | Guido van Rossum | 1991-04-04 | 1 | -13/+23 |
| | |||||
* | Added 'softspace' interface to replace 'needspace' printing hack. | Guido van Rossum | 1991-04-04 | 1 | -1/+18 |
| | |||||
* | Change ugly 'class member' to more normal 'instance'. | Guido van Rossum | 1991-04-04 | 1 | -19/+19 |
| | |||||
* | Swapped list_ass_item and list_ass_slice to satisfy Standard C. | Guido van Rossum | 1991-04-03 | 1 | -18/+18 |
| | |||||
* | Optimized stringitem. | Guido van Rossum | 1991-03-06 | 1 | -1/+13 |
| | |||||
* | Added repeat (for list*integet). | Guido van Rossum | 1991-03-06 | 1 | -1/+99 |
| | | | | Added methods remove(), reverse() and index(). | ||||
* | Fixed read() and readline() to do arbitrarily long reads. | Guido van Rossum | 1991-03-06 | 1 | -37/+178 |
| | | | | | And readline() now reads null bytes correctly. Added tell(), seek() and flush(). | ||||
* | Added copyright notice. | Guido van Rossum | 1991-02-19 | 14 | -0/+336 |
| | |||||
* | Hack to open resource fork on the Mac: open(filename, '*rb'). | Guido van Rossum | 1991-02-13 | 1 | -2/+10 |
| | |||||
* | Fix stringcompare when strings contain null bytes. | Guido van Rossum | 1991-02-13 | 1 | -2/+6 |
| | |||||
* | Changed bogus ref to textobject into xxobject. | Guido van Rossum | 1991-01-02 | 1 | -1/+1 |
| | |||||
* | Fixed a bit (still no warranties). | Guido van Rossum | 1991-01-02 | 1 | -3/+16 |
| | |||||
* | Think C 4.0 fixes a bug in 3.0 that we programmed around. | Guido van Rossum | 1991-01-02 | 1 | -2/+2 |
| | |||||
* | Return -1 for errors. | Guido van Rossum | 1990-12-20 | 2 | -2/+2 |
| | |||||
* | Added <errno.h> | Guido van Rossum | 1990-12-20 | 1 | -0/+5 |
| | |||||
* | "Compiling" version | Guido van Rossum | 1990-12-20 | 13 | -278/+449 |
| | |||||
* | Function objects no longer contain a parse tree node, but intermediate | Guido van Rossum | 1990-11-18 | 1 | -38/+13 |
| | | | | code. | ||||
* | Fix wrong #ifdef. | Guido van Rossum | 1990-11-18 | 1 | -1/+1 |
| | |||||
* | Fixed resizestring() to work if reference tracing is turned on. | Guido van Rossum | 1990-11-18 | 1 | -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 Rossum | 1990-11-02 | 1 | -2/+5 |
| | |||||
* | Removed redundant prototype for err_nomem(). | Guido van Rossum | 1990-11-02 | 1 | -2/+4 |
| | | | | Added check for negative refcnt in DELREF. | ||||
* | Added external interface to sort a list. | Guido van Rossum | 1990-10-30 | 1 | -0/+15 |
| | |||||
* | Added some prototypes. | Guido van Rossum | 1990-10-30 | 1 | -2/+2 |
| | |||||
* | Added getmodulename() public interface. | Guido van Rossum | 1990-10-26 | 1 | -0/+11 |
| | |||||
* | Fix zero division checks: return if it occurs! | Guido van Rossum | 1990-10-26 | 1 | -3/+3 |
| | |||||
* | Reads of zero should be legal! | Guido van Rossum | 1990-10-26 | 1 | -1/+6 |
| | |||||
* | New errors. | Guido van Rossum | 1990-10-21 | 7 | -126/+137 |
| | |||||
* | Added __dict to module getattr. | Guido van Rossum | 1990-10-21 | 1 | -6/+21 |
| | | | | New errors. | ||||
* | CHanged errors somewhat. | Guido van Rossum | 1990-10-21 | 1 | -3/+3 |
| | |||||
* | New error handling in getattr(). | Guido van Rossum | 1990-10-14 | 2 | -5/+5 |
| | |||||
* | New error handling. | Guido van Rossum | 1990-10-14 | 1 | -36/+37 |
| |