summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Christopher Fandrich <cfandrich@8cs.com>:Fred Drake2000-06-201-3/+6
* All the exception building related stuff has been moved out of thisBarry Warsaw2000-05-251-190/+1
* bltin_exc: Removed the leaf_exc flag in the structure, which was onlyBarry Warsaw2000-05-251-35/+29
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-05-091-2/+2
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-1/+1
* A bit of cleanup:Guido van Rossum2000-05-031-34/+5
* _PyBuiltin_Init_2(): Remove the misleading comment.Barry Warsaw2000-05-021-1/+0
* initerrors(): Remove this function. String-based standard exceptionsBarry Warsaw2000-05-021-96/+4
* When refering to Unicode characters in exception messages andFred Drake2000-04-131-5/+5
* ord: provide better error messagesJeremy Hylton2000-04-121-8/+19
* Marc-Andre Lemburg:Guido van Rossum2000-04-111-4/+17
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-8/+45
* Marc-Andre Lemburg: added new builtin functions unicode() andGuido van Rossum2000-03-101-5/+78
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-5/+5
* Changes by Mark Hammond related to the new WindowsError exception.Guido van Rossum2000-02-171-0/+6
* Adjusted apply() docstring based on comments from Gerrit HollFred Drake1999-12-231-3/+4
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-42/+67
* Fixed order of parameters in slice() docstring. The Library ReferenceFred Drake1999-07-191-1/+1
* Patch by Tim Peters:Guido van Rossum1999-06-221-0/+15
* # Darn! Local variable l declared but not used in abstract_issubclass().Guido van Rossum1999-06-171-1/+1
* Patch by Jim Fulton (code style tweaked a bit) to supportGuido van Rossum1999-06-161-17/+94
* Remove unused variable from complex_from_string() code.Guido van Rossum1999-04-071-1/+1
* Patch by Nick and Stephanie Lockwood to implement complex() with a stringGuido van Rossum1999-03-251-4/+133
* New builtin buffer() creates a derived read-only buffer from anyGuido van Rossum1999-03-191-0/+24
* (initerrors): Make sure that the exception tuples ("base-classes" whenBarry Warsaw1999-02-241-8/+18
* Patch by Tim Peters to improve the range checks for range() andGuido van Rossum1999-02-231-30/+48
* bltin_exc[]: EnvironmentError is not a "leaf exception", so set it'sBarry Warsaw1999-01-291-1/+1
* builtin_map(): A better fix for the previous leak plug (rememberBarry Warsaw1999-01-281-3/+6
* builtin_map(): Nailed memory leak. PyList_Append() borrows aBarry Warsaw1999-01-281-0/+1
* builtin_complex(): Nailed memory leak. This one's in the instanceBarry Warsaw1999-01-271-0/+1
* 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