summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* missed this one on the previous multi-file checkin - seeSkip Montanaro2002-09-031-2/+0
* Add a custom __str__ method to KeyError that applies repr() to theGuido van Rossum2002-09-031-2/+40
* Bump default check interval to 100 instructions. Computers are much fasterSkip Montanaro2002-09-031-2/+2
* replace thread state objects' ticker and checkinterval fields with twoSkip Montanaro2002-09-032-4/+9
* expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456.Skip Montanaro2002-09-031-0/+3
* Check string for NULL before using it to format the error message.Walter Dörwald2002-09-021-3/+6
* Removed bogus PyUnicodeTranslateError_GetEncoding, asWalter Dörwald2002-09-021-5/+0
* Limit the length of attribute names in exception messagesWalter Dörwald2002-09-021-3/+3
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-022-0/+1002
* Because MWH changed the bytecode again, moved the magic number *back*Guido van Rossum2002-08-311-1/+6
* Further SET_LINENO reomval fixes. See comments in patch #587933.Michael W. Hudson2002-08-302-37/+32
* execfile should call PyErr_SetFromErrnoWithFilename instead ofPeter Schneider-Kamp2002-08-271-1/+1
* Fix a couple of whitespace consistency nits.Fred Drake2002-08-261-2/+2
* Simplify, and avoid PyModule_GetDict() while we're at it.Fred Drake2002-08-261-5/+2
* The error messages in err_args() -- which is only called when theGuido van Rossum2002-08-231-2/+2
* Comment typo repair.Michael W. Hudson2002-08-201-1/+1
* My patch #597221. Use f_lasti more consistently.Michael W. Hudson2002-08-201-9/+9
* Add a warning comment to the LOAD_GLOBAL inline code.Guido van Rossum2002-08-191-1/+3
* Another ugly inlining hack, expanding the two PyDict_GetItem() callsGuido van Rossum2002-08-191-1/+25
* Inline fast_cfunction() in new call_function().Jeremy Hylton2002-08-161-55/+33
* Move body of CALL_FUNCTION opcode into helper function.Jeremy Hylton2002-08-161-54/+56
* Streamline the fast track for CFunction calls a bit more: there wasGuido van Rossum2002-08-161-5/+2
* A nice little speed-up for filter():Guido van Rossum2002-08-161-13/+17
* Add warnings for arguments named None. All set. (I could add aGuido van Rossum2002-08-161-1/+9
* Add warning for None used as keyword argument name in function call.Guido van Rossum2002-08-161-0/+1
* Add warnings for assignment or deletion of variables and attributesGuido van Rossum2002-08-161-0/+27
* Minor cleanup of parsename() and parsestr(): the 'struct compiling *'Guido van Rossum2002-08-161-13/+13
* This is my patchMichael W. Hudson2002-08-155-78/+199
* provide less mysterious error messages when seeing end-of-line inSkip Montanaro2002-08-151-0/+6
* Py_InitModule4(): Accept NULL for the 'methods' argument. This makesFred Drake2002-08-141-14/+16
* Added a FutureWarning for constructs that will change semantically inBarry Warsaw2002-08-142-2/+10
* Patch #550192: Set softspace to 0 in raw_input().Martin v. Löwis2002-08-141-18/+22
* Patch #505705: Remove eval in pickle and cPickle.Martin v. Löwis2002-08-141-98/+5
* Use PyErr_WarnExplicit() to warn about hex/oct constants, so theGuido van Rossum2002-08-121-4/+9
* Reset errno to zero after calling PyErr_Warn(). It can potentially doGuido van Rossum2002-08-111-0/+1
* Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.Marc-André Lemburg2002-08-111-34/+1
* Implement stage B0 of PEP 237: add warnings for operations thatGuido van Rossum2002-08-111-1/+9
* Add weakref support generator-iterators.Fred Drake2002-08-091-1/+7
* Use Py_FatalError instead of abort.Martin v. Löwis2002-08-071-2/+3
* Fix PEP 263 code --without-unicode. Fixes #591943.Martin v. Löwis2002-08-071-0/+10
* get rid of GETNAMEV macro - use GETITEM directlySkip Montanaro2002-08-061-12/+11
* small speedup for constant and name accessSkip Montanaro2002-08-041-3/+6
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-043-14/+143
* SF patch #578297:Andrew MacIntyre2002-08-041-7/+7
* Added one call to Py_Main(), for OSX framework builds only, that will get theJack Jansen2002-08-021-0/+88
* Whitespace normalization.Thomas Heller2002-07-301-4/+4
* Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000).Thomas Heller2002-07-301-6/+6
* New functions for extension writers on Windows:Thomas Heller2002-07-291-3/+17
* Excise DL_IMPORT/EXPORT from object.h, and related files. This patchMark Hammond2002-07-291-2/+2
* Patch #554716: Use __va_copy where available.Martin v. Löwis2002-07-282-0/+8