aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/errors.c
Commit message (Expand)AuthorAge
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-26
* #2542: now that issubclass() may call arbitrary code,Amaury Forgeot d'Arc2008-07-31
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-09
* Renamed PyString to PyBytesChristian Heimes2008-05-26
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-12
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-03
* Fix a crasher where Python code managed to infinitely recurse in C code withoutBrett Cannon2007-09-07
* SF #1669182, 2.5 was already fixed. Just assert in 2.6 since string exceptionsNeal Norwitz2007-02-26
* When printing an unraisable error, don't print exceptions. before the name.Neal Norwitz2007-02-26
* Prevent crash on shutdown which can occur if we are finalizingNeal Norwitz2007-01-05
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-04
* On Windows, make PyErr_Warn an exported function again.Thomas Heller2006-08-04
* Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().Neal Norwitz2006-07-30
* Fix #1494605.Georg Brandl2006-05-29
* PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-pasteTim Peters2006-05-28
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-27
* Replace tab inside comment with space.Walter Dörwald2006-05-25
* PyErr_NewException now accepts a tuple of base classes as itsGeorg Brandl2006-05-23
* moduleName can be NULLNeal Norwitz2006-04-17
* Add missing DECREF to PyErr_WriteUnraisable(). That function reportsThomas Wouters2006-04-15
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-13
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-01
* Updates to the with-statement:Guido van Rossum2006-02-28
* PyErr_ProgramText(): Grrrrrr.Tim Peters2006-02-27
* Use Py_ssize_t to count theMartin v. Löwis2006-02-16
* -X died some time ago; remove a tiny bit of associated cruft.Michael W. Hudson2005-01-18
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-24
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-20
* Made function declaration a proper C prototypeArmin Rigo2003-10-25
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-12
* Fix [ 771097 ] frozen programs fail due to implicit import of "warnings".Mark Hammond2003-07-15
* PyErr_NormalizeException(): in the type==NULL test, we should simplyGuido van Rossum2003-04-10
* Fix bug 683658 - PyErr_Warn may cause import deadlock.Mark Hammond2003-02-19
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-11
* Fix [ 616716 ] Bug in PyErr_SetExcFromWindowsMark Hammond2002-10-04
* Fix errors to pep277 checkin identified by Neal Norwitz.Mark Hammond2002-10-04
* Patch 594001: PEP 277 - Unicode file name support for Windows NT.Mark Hammond2002-10-03
* New functions for extension writers on Windows:Thomas Heller2002-07-29
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-30
* Mass checkin of universal newline support.Jack Jansen2002-04-14
* Patch #494045: patches errno and stat to cope on plan9.Martin v. Löwis2002-03-09
* Patch #50002: Display line information for bad \x escapes:Martin v. Löwis2002-03-03
* SF bug [#467265] Compile errors on SuSe Linux on IBM/s390.Tim Peters2001-10-02
* PyErr_NormalizeException()Jeremy Hylton2001-09-26
* PyErr_Format(): Factor out most of this code intoBarry Warsaw2001-08-24
* PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function callTim Peters2001-05-30
* Use Py_CHARMASK for ctype macros. Fixes bug #232787.Martin v. Löwis2001-03-06
* Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), withGuido van Rossum2001-02-28
* Improve SyntaxErrors for bad future statements. Set file and locationJeremy Hylton2001-02-28
* Add PyErr_Warn().Guido van Rossum2000-12-15