summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Avoid overflow if possible in calculations for range(); reportGuido van Rossum1999-01-121-7/+28
* Added new builtin standard exception: NotImplementedError (its CBarry Warsaw1998-12-011-0/+2
* Fix cosmetic bug in delattr docstring discovered by JvR.Guido van Rossum1998-11-231-1/+1
* builtin_apply(): Second argument type check is relaxed to allow any sequence.Barry Warsaw1998-10-011-6/+18
* Several changes that Python carry on in the face of errors in theBarry Warsaw1998-09-141-26/+61
* Should no longer surround PyOS_Readline() call withGuido van Rossum1998-09-031-4/+0
* Added support for two new standard errors: EnvironmentError andBarry Warsaw1998-07-231-5/+16
* Small changes to map() and filter():Guido van Rossum1998-07-101-5/+8
* Fix a stupid little bug: len() of an unsized returns -1 and leaves anGuido van Rossum1998-06-291-1/+5
* Experimental feature: add default argument to getattr().Guido van Rossum1998-06-291-5/+13
* Added doc strings.Guido van Rossum1998-06-261-52/+432
* In raw_input(prompt), make sure that str(prompt) really a stringGuido van Rossum1998-06-261-0/+2
* Remove a few unused locals (I love VC++ for this!).Guido van Rossum1998-05-291-2/+0
* A bunch of functions are now properly implemented in abstract.c, andGuido van Rossum1998-05-221-356/+40
* Implement round() slightly different, so that for negative ndigits noGuido van Rossum1998-05-091-5/+13
* Fred's right -- we need PyList_SET_ITEM().Guido van Rossum1998-04-241-1/+1
* In-line the code in range() to set the list items; there's really noGuido van Rossum1998-04-231-1/+1
* Make new gcc -Wall happyGuido van Rossum1998-04-101-2/+4
* Use a faster way to check for null bytes in the string argument forGuido van Rossum1998-03-131-7/+18
* Need a cast when comparing type object in isinstance()Guido van Rossum1997-12-101-1/+1
* Support type objects in isinstance().Guido van Rossum1997-12-021-10/+15
* Release interpreter lock around readline call in [raw_]input().Guido van Rossum1997-09-261-0/+2
* initerrors(): Eliminate circular reference which was causing a smallBarry Warsaw1997-09-181-3/+3
* [Py_Exc]NumberError => [Py_Exc]ArithmeticErrorBarry Warsaw1997-09-161-7/+7
* Introduce PyExc_Exception as the conceptual root class for all exceptions.Guido van Rossum1997-09-161-0/+7
* First part of package support.Guido van Rossum1997-09-051-1/+1
* Removed obsolete exception PyExc_AccessError.Barry Warsaw1997-08-291-43/+171
* Two new built-in functions: issubclass() and isinstance(). Both takeBarry Warsaw1997-08-221-5/+59
* The last of the mass checkins for separate (sub)interpreters.Guido van Rossum1997-08-021-50/+71
* PyObject_Compare can raise an exception now.Guido van Rossum1997-05-231-4/+14
* Oops -- missed FloatingPointError in renaming.Guido van Rossum1997-05-091-2/+2
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-071-7/+6
* New dir() function --Guido van Rossum1997-05-061-22/+48
* Avoid sprintf buffer overflow if more than 9999 arguments.Guido van Rossum1997-04-301-1/+1
* Quickly renamed the remaining files -- this directory is done.Guido van Rossum1997-04-291-662/+677
* Keep gcc -Wall and Microsoft VC happy.Guido van Rossum1997-04-111-3/+5
* 1. Add string conversions to int(), long(), float(). (Not to complex()!)Guido van Rossum1997-03-311-7/+127
* Define __debug__ as 0 if -O is given, 1 otherwise. Also test forGuido van Rossum1997-03-111-0/+4
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-141-0/+2
* Added intern() function.Guido van Rossum1997-02-141-0/+14
* Intern the string "__complex__".Guido van Rossum1997-01-181-1/+1
* Add unistd.h to make gcc -Wall happy.Guido van Rossum1996-12-101-0/+4
* Support __complex__ method on instances, for complex() conversion.Guido van Rossum1996-12-051-1/+23
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Forget about Ellipses b/w compatibility.Guido van Rossum1996-10-161-2/+0
* Ellipses -> Ellipsis rename (the dictionary really says that it shouldGuido van Rossum1996-10-111-1/+3
* Stupid bug: complex(x,y) would yield x+xjGuido van Rossum1996-09-071-1/+1
* Don't die in resizestring() on filter(<func>, "").Guido van Rossum1996-08-161-1/+1
* Include mymath.h instead of declaring prototypes for math functions.Guido van Rossum1996-08-081-5/+13
* Add 'Ellipses' object.Guido van Rossum1996-07-301-0/+1