summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* remove spurious SET_LINENO from com_list_for and com_list_if. All they doSkip Montanaro2002-07-251-2/+0
* Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.Mark Hammond2002-07-191-5/+0
* Fix bug [ 549731 ] Unicode encoders appears to leak references.Mark Hammond2002-07-181-4/+10
* SF patch 552161 - Py_AddPendingCall doesn't unlock on fail (DanielGuido van Rossum2002-07-171-1/+3
* Removed more stray instances of statichere, but left _sre.c alone.Tim Peters2002-07-171-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* There's no need for generators to define an explicit next() method.Tim Peters2002-07-171-22/+1
* SF patch # 580411, move frame macros from frameobject.h into ceval.cNeal Norwitz2002-07-141-3/+10
* Don't stomp on an exception set by PyCell_Get()Jeremy Hylton2002-07-111-1/+4
* _Py_AskYesNo(): Removed this function. It was defined only in aTim Peters2002-07-091-20/+0
* Fix SF Bug 564931: compile() traceback must include filename.Thomas Heller2002-07-091-2/+27
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-1/+1
* Rearranged and added comments to object.h, to clarify many thingsTim Peters2002-07-071-2/+3
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-307-49/+18
* Got rid of an extraneous semicolon.Jack Jansen2002-06-261-1/+1
* Silence compiler warningJeremy Hylton2002-06-251-1/+1
* SF 569257 -- Name mangle double underscored variable names in __slots__.Raymond Hettinger2002-06-201-6/+6
* Fix the docstring for sys.getrefcount().Fred Drake2002-06-201-2/+3
* PyModule_AddObject(): Added missing exceptions.Fred Drake2002-06-171-7/+14
* Apply diff2.txt from SF patch http://www.python.org/sf/566999Walter Dörwald2002-06-171-7/+29
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-143-67/+67
* Now FOR_LOOP is gone, loop_subscript can go too.Michael W. Hudson2002-06-141-19/+0
* Fix SF bug # 561858 Assertion with very long listsNeal Norwitz2002-06-141-7/+7
* Fix SF bug # 561858 Assertion with very long listsNeal Norwitz2002-06-142-12/+12
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-133-211/+171
* The opcode FOR_LOOP no longer exists.Guido van Rossum2002-06-131-31/+0
* SF bug 567538: Generator can crash the interpreter (Finn Bock).Guido van Rossum2002-06-121-2/+2
* Patch #488073: AtheOS port.Martin v. Löwis2002-06-113-0/+351