| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #13546: Fixed an overflow issue that could crash the intepreter when | Amaury Forgeot d'Arc | 2011-12-07 | 1 | -2/+4 |
|
|
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -556/+556 |
|
|
* | #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new ... | Georg Brandl | 2009-12-28 | 1 | -0/+34 |
|
|
* | Add const qualifier to PyErr_SetFromErrnoWithFilename and to | Alexandre Vassalotti | 2009-06-12 | 1 | -2/+2 |
|
|
* | Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. | Hirokazu Yamamoto | 2009-05-17 | 1 | -6/+2 |
|
|
* | PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject | Georg Brandl | 2009-04-02 | 1 | -1/+9 |
|
|
* | In PyErr_GivenExceptionMatches, temporarily bump the recursion | Georg Brandl | 2009-04-02 | 1 | -1/+7 |
|
|
* | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 1 | -1/+0 |
|
|
* | #2542: now that issubclass() may call arbitrary code, | Amaury Forgeot d'Arc | 2008-07-31 | 1 | -3/+12 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -9/+9 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -9/+9 |
|
|
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 1 | -75/+0 |
|
|
* | Modified PyImport_Import and PyImport_ImportModule to always use absolute imp... | Christian Heimes | 2008-01-03 | 1 | -1/+1 |
|
|
* | Fix a crasher where Python code managed to infinitely recurse in C code without | Brett Cannon | 2007-09-07 | 1 | -0/+8 |
|
|
* | SF #1669182, 2.5 was already fixed. Just assert in 2.6 since string exceptions | Neal Norwitz | 2007-02-26 | 1 | -2/+3 |
|
|
* | When printing an unraisable error, don't print exceptions. before the name. | Neal Norwitz | 2007-02-26 | 1 | -1/+2 |
|
|
* | Prevent crash on shutdown which can occur if we are finalizing | Neal Norwitz | 2007-01-05 | 1 | -1/+2 |
|
|
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -1/+2 |
|
|
* | On Windows, make PyErr_Warn an exported function again. | Thomas Heller | 2006-08-04 | 1 | -1/+1 |
|
|
* | Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). | Neal Norwitz | 2006-07-30 | 1 | -2/+13 |
|
|
* | Fix #1494605. | Georg Brandl | 2006-05-29 | 1 | -1/+2 |
|
|
* | PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste | Tim Peters | 2006-05-28 | 1 | -5/+8 |
|
|
* | Conversion of exceptions over from faked-up classes to new-style C types. | Richard Jones | 2006-05-27 | 1 | -20/+15 |
|
|
* | Replace tab inside comment with space. | Walter Dörwald | 2006-05-25 | 1 | -1/+1 |
|
|
* | PyErr_NewException now accepts a tuple of base classes as its | Georg Brandl | 2006-05-23 | 1 | -3/+10 |
|
|
* | moduleName can be NULL | Neal Norwitz | 2006-04-17 | 1 | -1/+1 |
|
|
* | Add missing DECREF to PyErr_WriteUnraisable(). That function reports | Thomas Wouters | 2006-04-15 | 1 | -0/+1 |
|
|
* | spread the extern "C" { } magic pixie dust around. Python itself builds now | Anthony Baxter | 2006-04-13 | 1 | -0/+10 |
|
|
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -23/+43 |
|
|
* | Updates to the with-statement: | Guido van Rossum | 2006-02-28 | 1 | -0/+1 |
|
|
* | PyErr_ProgramText(): Grrrrrr. | Tim Peters | 2006-02-27 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t to count the | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
|
|
* | -X died some time ago; remove a tiny bit of associated cruft. | Michael W. Hudson | 2005-01-18 | 1 | -4/+0 |
|
|
* | Changed random calls to PyThreadState_Get() to use the macro | Nicholas Bastin | 2004-03-24 | 1 | -1/+1 |
|
|
* | Getting rid of all the code inside #ifdef macintosh too. | Jack Jansen | 2003-11-20 | 1 | -6/+0 |
|
|
* | Made function declaration a proper C prototype | Armin Rigo | 2003-10-25 | 1 | -1/+1 |
|
|
* | Simplify and speedup uses of Py_BuildValue(): | Raymond Hettinger | 2003-10-12 | 1 | -3/+3 |
|
|
* | Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". | Mark Hammond | 2003-07-15 | 1 | -3/+4 |
|
|
* | PyErr_NormalizeException(): in the type==NULL test, we should simply | Guido van Rossum | 2003-04-10 | 1 | -3/+2 |
|
|
* | Fix bug 683658 - PyErr_Warn may cause import deadlock. | Mark Hammond | 2003-02-19 | 1 | -5/+4 |
|
|
* | Constify filenames and scripts. Fixes #651362. | Martin v. Löwis | 2002-12-11 | 1 | -5/+5 |
|
|
* | Fix [ 616716 ] Bug in PyErr_SetExcFromWindows | Mark Hammond | 2002-10-04 | 1 | -9/+28 |
|
|
* | Fix errors to pep277 checkin identified by Neal Norwitz. | Mark Hammond | 2002-10-04 | 1 | -3/+3 |
|
|
* | Patch 594001: PEP 277 - Unicode file name support for Windows NT. | Mark Hammond | 2002-10-03 | 1 | -10/+82 |
|
|
* | New functions for extension writers on Windows: | Thomas Heller | 2002-07-29 | 1 | -3/+17 |
|
|
* | Patch #569753: Remove support for WIN16. | Martin v. Löwis | 2002-06-30 | 1 | -4/+4 |
|
|
* | Mass checkin of universal newline support. | Jack Jansen | 2002-04-14 | 1 | -2/+2 |
|
|
* | Patch #494045: patches errno and stat to cope on plan9. | Martin v. Löwis | 2002-03-09 | 1 | -1/+9 |
|
|
* | Patch #50002: Display line information for bad \x escapes: | Martin v. Löwis | 2002-03-03 | 1 | -1/+23 |
|
|
* | SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. | Tim Peters | 2001-10-02 | 1 | -1/+1 |
|
|