| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a stupid little bug: len() of an unsized returns -1 and leaves an | Guido van Rossum | 1998-06-29 | 1 | -1/+5 |
|
|
* | Experimental feature: add default argument to getattr(). | Guido van Rossum | 1998-06-29 | 1 | -5/+13 |
|
|
* | Added doc strings. | Guido van Rossum | 1998-06-26 | 1 | -52/+432 |
|
|
* | In raw_input(prompt), make sure that str(prompt) really a string | Guido van Rossum | 1998-06-26 | 1 | -0/+2 |
|
|
* | Remove a few unused locals (I love VC++ for this!). | Guido van Rossum | 1998-05-29 | 1 | -2/+0 |
|
|
* | A bunch of functions are now properly implemented in abstract.c, and | Guido van Rossum | 1998-05-22 | 1 | -356/+40 |
|
|
* | Implement round() slightly different, so that for negative ndigits no | Guido van Rossum | 1998-05-09 | 1 | -5/+13 |
|
|
* | Fred's right -- we need PyList_SET_ITEM(). | Guido van Rossum | 1998-04-24 | 1 | -1/+1 |
|
|
* | In-line the code in range() to set the list items; there's really no | Guido van Rossum | 1998-04-23 | 1 | -1/+1 |
|
|
* | Make new gcc -Wall happy | Guido van Rossum | 1998-04-10 | 1 | -2/+4 |
|
|
* | Use a faster way to check for null bytes in the string argument for | Guido van Rossum | 1998-03-13 | 1 | -7/+18 |
|
|
* | Need a cast when comparing type object in isinstance() | Guido van Rossum | 1997-12-10 | 1 | -1/+1 |
|
|
* | Support type objects in isinstance(). | Guido van Rossum | 1997-12-02 | 1 | -10/+15 |
|
|
* | Release interpreter lock around readline call in [raw_]input(). | Guido van Rossum | 1997-09-26 | 1 | -0/+2 |
|
|
* | initerrors(): Eliminate circular reference which was causing a small | Barry Warsaw | 1997-09-18 | 1 | -3/+3 |
|
|
* | [Py_Exc]NumberError => [Py_Exc]ArithmeticError | Barry Warsaw | 1997-09-16 | 1 | -7/+7 |
|
|
* | Introduce PyExc_Exception as the conceptual root class for all exceptions. | Guido van Rossum | 1997-09-16 | 1 | -0/+7 |
|
|
* | First part of package support. | Guido van Rossum | 1997-09-05 | 1 | -1/+1 |
|
|
* | Removed obsolete exception PyExc_AccessError. | Barry Warsaw | 1997-08-29 | 1 | -43/+171 |
|
|
* | Two new built-in functions: issubclass() and isinstance(). Both take | Barry Warsaw | 1997-08-22 | 1 | -5/+59 |
|
|
* | The last of the mass checkins for separate (sub)interpreters. | Guido van Rossum | 1997-08-02 | 1 | -50/+71 |
|
|
* | PyObject_Compare can raise an exception now. | Guido van Rossum | 1997-05-23 | 1 | -4/+14 |
|
|
* | Oops -- missed FloatingPointError in renaming. | Guido van Rossum | 1997-05-09 | 1 | -2/+2 |
|
|
* | Instead of importing graminit.h whenever one of the three grammar 'root' | Guido van Rossum | 1997-05-07 | 1 | -7/+6 |
|
|
* | New dir() function -- | Guido van Rossum | 1997-05-06 | 1 | -22/+48 |
|
|
* | Avoid sprintf buffer overflow if more than 9999 arguments. | Guido van Rossum | 1997-04-30 | 1 | -1/+1 |
|
|
* | Quickly renamed the remaining files -- this directory is done. | Guido van Rossum | 1997-04-29 | 1 | -662/+677 |
|
|
* | Keep gcc -Wall and Microsoft VC happy. | Guido van Rossum | 1997-04-11 | 1 | -3/+5 |
|
|
* | 1. Add string conversions to int(), long(), float(). (Not to complex()!) | Guido van Rossum | 1997-03-31 | 1 | -7/+127 |
|
|
* | Define __debug__ as 0 if -O is given, 1 otherwise. Also test for | Guido van Rossum | 1997-03-11 | 1 | -0/+4 |
|
|
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 1 | -0/+2 |
|
|
* | Added intern() function. | Guido van Rossum | 1997-02-14 | 1 | -0/+14 |
|
|
* | Intern the string "__complex__". | Guido van Rossum | 1997-01-18 | 1 | -1/+1 |
|
|
* | Add unistd.h to make gcc -Wall happy. | Guido van Rossum | 1996-12-10 | 1 | -0/+4 |
|
|
* | Support __complex__ method on instances, for complex() conversion. | Guido van Rossum | 1996-12-05 | 1 | -1/+23 |
|
|
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -13/+20 |
|
|
* | Forget about Ellipses b/w compatibility. | Guido van Rossum | 1996-10-16 | 1 | -2/+0 |
|
|
* | Ellipses -> Ellipsis rename (the dictionary really says that it should | Guido van Rossum | 1996-10-11 | 1 | -1/+3 |
|
|
* | Stupid bug: complex(x,y) would yield x+xj | Guido van Rossum | 1996-09-07 | 1 | -1/+1 |
|
|
* | Don't die in resizestring() on filter(<func>, ""). | Guido van Rossum | 1996-08-16 | 1 | -1/+1 |
|
|
* | Include mymath.h instead of declaring prototypes for math functions. | Guido van Rossum | 1996-08-08 | 1 | -5/+13 |
|
|
* | Add 'Ellipses' object. | Guido van Rossum | 1996-07-30 | 1 | -0/+1 |
|
|
* | Changes for slice and ellipses | Guido van Rossum | 1996-07-30 | 1 | -0/+23 |
|
|
* | Py_complex; and WITHOUT_COMPLEX added to getargs.c | Guido van Rossum | 1996-07-21 | 1 | -1/+1 |
|
|
* | Removed some redundant header includes. | Guido van Rossum | 1996-05-23 | 1 | -5/+5 |
|
|
* | Add list() method, analogous to tuple(). | Guido van Rossum | 1996-04-09 | 1 | -0/+36 |
|
|
* | properly initialize optional arguments to apply() | Guido van Rossum | 1996-01-26 | 1 | -1/+1 |
|
|
* | changes for complex numbers | Guido van Rossum | 1996-01-12 | 1 | -1/+53 |
|
|
* | avoid resize of 0-length tuple | Guido van Rossum | 1995-08-04 | 1 | -0/+5 |
|
|
* | be more suspicious of getlocals() | Guido van Rossum | 1995-07-26 | 1 | -2/+8 |
|
|