| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | PyErr_NormalizeException() | Jeremy Hylton | 2001-09-26 | 1 | -1/+12 |
|
|
* | PyErr_Format(): Factor out most of this code into | Barry Warsaw | 2001-08-24 | 1 | -114/+1 |
|
|
* | PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function call | Tim Peters | 2001-05-30 | 1 | -1/+1 |
|
|
* | Use Py_CHARMASK for ctype macros. Fixes bug #232787. | Martin v. Löwis | 2001-03-06 | 1 | -4/+4 |
|
|
* | Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), with | Guido van Rossum | 2001-02-28 | 1 | -0/+42 |
|
|
* | Improve SyntaxErrors for bad future statements. Set file and location | Jeremy Hylton | 2001-02-28 | 1 | -0/+79 |
|
|
* | Add PyErr_Warn(). | Guido van Rossum | 2000-12-15 | 1 | -0/+34 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -1/+1 |
|
|
* | Avoid a couple of "value computed is not used" warnings from gcc -Wall; | Fred Drake | 2000-10-10 | 1 | -2/+2 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | code part of patch #100895 by Fredrik Lundh | Jeremy Hylton | 2000-09-01 | 1 | -4/+124 |
|
|
* | refactor __del__ exception handler into PyErr_WriteUnraisable | Jeremy Hylton | 2000-09-01 | 1 | -0/+27 |
|
|
* | Improve the exceptions raised by PyErr_BadInternalCall(); adding the | Fred Drake | 2000-08-24 | 1 | -2/+15 |
|
|
* | Do not set a MemoryError exception over another MemoryError exception, | Vladimir Marangozov | 2000-08-18 | 1 | -0/+4 |
|
|
* | Avoid dumping core when PyErr_NormalizeException() is called without | Guido van Rossum | 2000-08-07 | 1 | -0/+6 |
|
|
* | Mass ANSIfication of function definitions. Doesn't cover all 'extern' | Thomas Wouters | 2000-07-22 | 1 | -51/+17 |
|
|
* | delete obsolete SYMANTEC__CFM68K__ #ifdefs | Skip Montanaro | 2000-07-12 | 1 | -4/+0 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -2/+2 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | PyErr_GivenExceptionMatches(): Check for err==NULL and exc==NULL and | Barry Warsaw | 2000-05-02 | 1 | -2/+6 |
|
|
* | Mark discovered a bug in his patch: he didn't *use* PyExc_WindowsError | Guido van Rossum | 2000-03-02 | 1 | -1/+1 |
|
|
* | Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong | Guido van Rossum | 2000-02-21 | 1 | -1/+1 |
|
|
* | Patch by Mark Hammond: | Guido van Rossum | 2000-02-17 | 1 | -15/+75 |
|
|
* | Patch by Christian Tismer for Win32, to use FormatMessage() instead of | Guido van Rossum | 1999-04-21 | 1 | -2/+29 |
|
|
* | Use PyThreadState_GET() macro. | Guido van Rossum | 1998-12-21 | 1 | -1/+1 |
|
|
* | When errno is zero, avoid calling strerror() and use "Error" for the | Guido van Rossum | 1998-10-14 | 1 | -2/+7 |
|
|
* | PyErr_SetFromErrnoWithFilename(): New function which supports setting | Barry Warsaw | 1998-07-23 | 1 | -2/+14 |
|
|
* | Fix subtle bug in cleanup code in PyErr_NormalizeException(), detected | Guido van Rossum | 1997-12-09 | 1 | -2/+2 |
|
|
* | New version of PyErr_NewException() that is compatible with -X option. | Guido van Rossum | 1997-10-03 | 1 | -14/+35 |
|
|
* | PyErr_NormalizeException(): If the exception's type is a class and the | Barry Warsaw | 1997-09-30 | 1 | -0/+8 |
|
|
* | New API PyErr_NewException(name, base, dict) to create simple new exceptions. | Guido van Rossum | 1997-09-16 | 1 | -0/+31 |
|
|
* | PyErr_NoMemory(): If the pre-instantiated memory exception is non-null | Barry Warsaw | 1997-08-29 | 1 | -1/+9 |
|
|