aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/errors.c
Commit message (Expand)AuthorAge
* -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
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-24
* Avoid a couple of "value computed is not used" warnings from gcc -Wall;Fred Drake2000-10-10
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-01
* code part of patch #100895 by Fredrik LundhJeremy Hylton2000-09-01
* refactor __del__ exception handler into PyErr_WriteUnraisableJeremy Hylton2000-09-01
* Improve the exceptions raised by PyErr_BadInternalCall(); adding theFred Drake2000-08-24
* Do not set a MemoryError exception over another MemoryError exception,Vladimir Marangozov2000-08-18
* Avoid dumping core when PyErr_NormalizeException() is called withoutGuido van Rossum2000-08-07
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-22
* delete obsolete SYMANTEC__CFM68K__ #ifdefsSkip Montanaro2000-07-12
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-09
* Change copyright notice - 2nd try.Guido van Rossum2000-06-30
* Change copyright notice.Guido van Rossum2000-06-30
* PyErr_GivenExceptionMatches(): Check for err==NULL and exc==NULL andBarry Warsaw2000-05-02
* Mark discovered a bug in his patch: he didn't *use* PyExc_WindowsErrorGuido van Rossum2000-03-02
* Mark pointed out a buglet in his patch: i < _sys_nerr isn't strongGuido van Rossum2000-02-21
* Patch by Mark Hammond:Guido van Rossum2000-02-17
* Patch by Christian Tismer for Win32, to use FormatMessage() instead ofGuido van Rossum1999-04-21
* Use PyThreadState_GET() macro.Guido van Rossum1998-12-21
* When errno is zero, avoid calling strerror() and use "Error" for theGuido van Rossum1998-10-14
* PyErr_SetFromErrnoWithFilename(): New function which supports settingBarry Warsaw1998-07-23
* Fix subtle bug in cleanup code in PyErr_NormalizeException(), detectedGuido van Rossum1997-12-09
* New version of PyErr_NewException() that is compatible with -X option.Guido van Rossum1997-10-03
* PyErr_NormalizeException(): If the exception's type is a class and theBarry Warsaw1997-09-30
* New API PyErr_NewException(name, base, dict) to create simple new exceptions.Guido van Rossum1997-09-16