581 Commits (0d554d7ef159761439ade414fcd028262eae656c)

Author SHA1 Message Date
Barry Warsaw 47eeb9bdad initerrors(): Remove this function. String-based standard exceptions 26 years ago
Fred Drake 078b24f000 When refering to Unicode characters in exception messages and 27 years ago
Jeremy Hylton 394b54d01a ord: provide better error messages 27 years ago
Guido van Rossum 3afba7644b Marc-Andre Lemburg: 27 years ago
Guido van Rossum 9e896b37c7 Marc-Andre's third try at this bulk patch seems to work (except that 27 years ago
Guido van Rossum 09095f3f61 Marc-Andre Lemburg: added new builtin functions unicode() and 27 years ago
Guido van Rossum 43713e5a28 Massive patch by Skip Montanaro to add ":name" to as many 27 years ago
Guido van Rossum 65a75b0d52 Changes by Mark Hammond related to the new WindowsError exception. 27 years ago
Fred Drake 7b912120ca Adjusted apply() docstring based on comments from Gerrit Holl 27 years ago
Barry Warsaw 226ae6ca12 Mainlining the string_methods branch. See branch revision log 27 years ago
Fred Drake 3d587442f9 Fixed order of parameters in slice() docstring. The Library Reference 27 years ago
Guido van Rossum 8746082175 Patch by Tim Peters: 27 years ago
Guido van Rossum 7f85186921 # Darn! Local variable l declared but not used in abstract_issubclass(). 27 years ago
Guido van Rossum 668213d3b8 Patch by Jim Fulton (code style tweaked a bit) to support 27 years ago
Guido van Rossum 99fb7c70f4 Remove unused variable from complex_from_string() code. 28 years ago
Guido van Rossum 1195023b89 Patch by Nick and Stephanie Lockwood to implement complex() with a string 28 years ago
Guido van Rossum 0daf022225 New builtin buffer() creates a derived read-only buffer from any 28 years ago
Barry Warsaw 72b715d979 (initerrors): Make sure that the exception tuples ("base-classes" when 28 years ago
Guido van Rossum 124eff0225 Patch by Tim Peters to improve the range checks for range() and 28 years ago
Barry Warsaw 7890203f49 bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's 28 years ago
Barry Warsaw fa77e09dd0 builtin_map(): A better fix for the previous leak plug (remember 28 years ago
Barry Warsaw 2133287c3e builtin_map(): Nailed memory leak. PyList_Append() borrows a 28 years ago
Barry Warsaw f988e687a1 builtin_complex(): Nailed memory leak. This one's in the instance 28 years ago
Guido van Rossum e23cde2f8d Avoid overflow if possible in calculations for range(); report 28 years ago
Barry Warsaw 344864fcfb Added new builtin standard exception: NotImplementedError (its C 28 years ago
Guido van Rossum df12a59305 Fix cosmetic bug in delattr docstring discovered by JvR. 28 years ago
Barry Warsaw 968f8cbace builtin_apply(): Second argument type check is relaxed to allow any sequence. 28 years ago
Barry Warsaw 98b6246c0c Several changes that Python carry on in the face of errors in the 28 years ago
Guido van Rossum 746340d989 Should no longer surround PyOS_Readline() call with 28 years ago
Barry Warsaw d086a1a864 Added support for two new standard errors: EnvironmentError and 28 years ago
Guido van Rossum fa4ac71dd6 Small changes to map() and filter(): 28 years ago
Guido van Rossum 8ea9f4d10a Fix a stupid little bug: len() of an unsized returns -1 and leaves an 28 years ago
Guido van Rossum 950ff2923a Experimental feature: add default argument to getattr(). 28 years ago
Guido van Rossum f9d9c6c5d2 Added doc strings. 28 years ago
Guido van Rossum d9b5208e90 In raw_input(prompt), make sure that str(prompt) really a string 28 years ago
Guido van Rossum 9396673a58 Remove a few unused locals (I love VC++ for this!). 28 years ago
Guido van Rossum 09df08a105 A bunch of functions are now properly implemented in abstract.c, and 28 years ago
Guido van Rossum 1e162d3753 Implement round() slightly different, so that for negative ndigits no 28 years ago
Guido van Rossum a937d14898 Fred's right -- we need PyList_SET_ITEM(). 29 years ago
Guido van Rossum 507338e5ca In-line the code in range() to set the list items; there's really no 29 years ago
Guido van Rossum 730806d3d9 Make new gcc -Wall happy 29 years ago
Guido van Rossum 8f74571596 Use a faster way to check for null bytes in the string argument for 29 years ago
Guido van Rossum d6af46d4ae Need a cast when comparing type object in isinstance() 29 years ago
Guido van Rossum f5dd914196 Support type objects in isinstance(). 29 years ago
Guido van Rossum ee81af8977 Release interpreter lock around readline call in [raw_]input(). 29 years ago
Barry Warsaw b01a7fa5f8 initerrors(): Eliminate circular reference which was causing a small 29 years ago
Barry Warsaw 412cdc2284 [Py_Exc]NumberError => [Py_Exc]ArithmeticError 29 years ago
Guido van Rossum 0474832d9c Introduce PyExc_Exception as the conceptual root class for all exceptions. 29 years ago
Guido van Rossum aee0bad0a5 First part of package support. 29 years ago
Barry Warsaw 757af0e7bb Removed obsolete exception PyExc_AccessError. 29 years ago