summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Move body of CALL_FUNCTION opcode into helper function.Jeremy Hylton2002-08-161-54/+56
* Squash a few calls to the hideously expensive PyObject_CallObject(o,a)Guido van Rossum2002-08-165-12/+37
* Streamline the fast track for CFunction calls a bit more: there wasGuido van Rossum2002-08-161-5/+2
* Regenerated with PyDoc_STR() around docstrings.Jack Jansen2002-08-1623-2151/+2151
* iUse PyDoc_STR() around docstrings.Jack Jansen2002-08-161-1/+1
* A nice little speed-up for filter():Guido van Rossum2002-08-161-13/+17
* Fix SF bug 595838 -- buffer in type_new() should not be static. MovedGuido van Rossum2002-08-161-1/+1
* SF bug 594996: OverflowError in random.randrangeTim Peters2002-08-161-4/+17
* Newly-relaxed limits on random.randrange(). Also added some info aboutTim Peters2002-08-161-5/+12
* Mention warnings about defining None.Guido van Rossum2002-08-161-0/+3
* Add warnings for arguments named None. All set. (I could add aGuido van Rossum2002-08-161-1/+9
* check_events(): This was failing under -O, due to not expecting anyTim Peters2002-08-161-3/+0
* 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
* base64.decodestring('') should return '' instead of raising anBarry Warsaw2002-08-152-11/+3
* Fixed the bugs in the constant definitions, and in the code to testJack Jansen2002-08-154-10/+14
* After generating the Python file with definitions try to run it, soJack Jansen2002-08-1527-0/+54
* Try to cater for a source tree checked out with MacCVS in stead ofJack Jansen2002-08-151-6/+36
* Illustrating by example one good reason not to trust a proof <wink>.Tim Peters2002-08-151-3/+3
* k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits"Tim Peters2002-08-151-34/+37
* long_mul(): Simplified exit code. In particular, k_mul() returns aTim Peters2002-08-151-9/+3
* This is my patchMichael W. Hudson2002-08-1519-187/+341
* Add notes about universal newlines.Guido van Rossum2002-08-151-2/+10
* Fix typo. It's --with-universal-newlines, notGuido van Rossum2002-08-152-3/+3
* Slight reordering of directories searched for BerkDB libs and include files.Skip Montanaro2002-08-151-12/+23
* forgot the best part - the new tests...Skip Montanaro2002-08-151-0/+32
* provide less mysterious error messages when seeing end-of-line inSkip Montanaro2002-08-153-3/+14
* Add 'in' changeAndrew M. Kuchling2002-08-151-3/+29
* Add news about Fred's change to Py_InitModule4().Guido van Rossum2002-08-141-0/+4
* Reflow long lines.Jeremy Hylton2002-08-141-26/+32
* Py_InitModule() and friends now accept NULL for the 'methods'Fred Drake2002-08-141-0/+9
* Py_InitModule4(): Accept NULL for the 'methods' argument. This makesFred Drake2002-08-141-14/+16
* Docstring nits: The module is neither proposed nor new.Jeremy Hylton2002-08-141-1/+1
* Added Hisao Suzuki.Martin v. Löwis2002-08-141-0/+1
* More changes of DeprecationWarning to FutureWarning.Guido van Rossum2002-08-145-8/+8
* Explain use of currentThread() in _Condition methods.Jeremy Hylton2002-08-141-2/+2
* The filterwarnings() call here should be updated to filter outGuido van Rossum2002-08-141-1/+1
* Explain a little more.Jeremy Hylton2002-08-141-0/+1
* Explain a minor mystery.Jeremy Hylton2002-08-141-0/+1
* PyType_Ready(): initialize the base class a bit earlier, so that if weGuido van Rossum2002-08-141-6/+6
* k_mul() comments: Simplified the simplified explanation of why ah*bh andTim Peters2002-08-141-6/+3
* More updates describing FutureWarnings.Barry Warsaw2002-08-143-1/+13
* mkstemp's last argument changed from binary=True to text=False.Tim Peters2002-08-141-2/+2
* k_mul() comments: Explained why there's always enough room to subtractTim Peters2002-08-141-0/+7
* Add news about FutureWarning and PEP 237 stage B0.Guido van Rossum2002-08-141-0/+23
* Document PyExc_FutureWarningBarry Warsaw2002-08-141-4/+4
* Added a FutureWarning for constructs that will change semantically inBarry Warsaw2002-08-143-2/+11
* Patch #550192: Set softspace to 0 in raw_input().Martin v. Löwis2002-08-141-18/+22
* tempfile's mkstemp(): Changed last argument fromTim Peters2002-08-142-11/+11