summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
Commit message (Expand)AuthorAgeFilesLines
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-1/+1
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-1/+1
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-1/+1
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-021-1/+1
* Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the codeGuido van Rossum2007-10-101-7/+10
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-0/+8
* Patch #1075: Use wide API to format error messages.Martin v. Löwis2007-09-031-32/+57
* Add const to some strings that are not modifiedNeal Norwitz2007-08-241-5/+5
* Use unicode for much of errors.Neal Norwitz2007-08-241-7/+7
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-11/+0
* Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.Guido van Rossum2007-07-161-4/+4
* Revert a wrong commit.Thomas Heller2007-07-111-1/+1
* Must create heaptypes with unicode names.Thomas Heller2007-07-111-1/+1
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-251-6/+4
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+3
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-261-1/+2
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-2/+13
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-6/+10
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-25/+26
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-0/+11
* Fix (and add test for) missing check for BaseException subclasses in the CThomas Wouters2006-04-201-0/+9
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-1/+2
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-23/+43
* Updates to the with-statement:Guido van Rossum2006-02-281-0/+1
* PyErr_ProgramText(): Grrrrrr.Tim Peters2006-02-271-1/+1
* Use Py_ssize_t to count theMartin v. Löwis2006-02-161-1/+1
* -X died some time ago; remove a tiny bit of associated cruft.Michael W. Hudson2005-01-181-4/+0
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-1/+1
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-6/+0
* Made function declaration a proper C prototypeArmin Rigo2003-10-251-1/+1
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-3/+3
* Fix [ 771097 ] frozen programs fail due to implicit import of "warnings".Mark Hammond2003-07-151-3/+4
* PyErr_NormalizeException(): in the type==NULL test, we should simplyGuido van Rossum2003-04-101-3/+2
* Fix bug 683658 - PyErr_Warn may cause import deadlock.Mark Hammond2003-02-191-5/+4
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-111-5/+5
* Fix [ 616716 ] Bug in PyErr_SetExcFromWindowsMark Hammond2002-10-041-9/+28
* Fix errors to pep277 checkin identified by Neal Norwitz.Mark Hammond2002-10-041-3/+3
* Patch 594001: PEP 277 - Unicode file name support for Windows NT.Mark Hammond2002-10-031-10/+82
* New functions for extension writers on Windows:Thomas Heller2002-07-291-3/+17
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-4/+4
* Mass checkin of universal newline support.Jack Jansen2002-04-141-2/+2
* Patch #494045: patches errno and stat to cope on plan9.Martin v. Löwis2002-03-091-1/+9
* Patch #50002: Display line information for bad \x escapes:Martin v. Löwis2002-03-031-1/+23
* SF bug [#467265] Compile errors on SuSe Linux on IBM/s390.Tim Peters2001-10-021-1/+1
* PyErr_NormalizeException()Jeremy Hylton2001-09-261-1/+12
* PyErr_Format(): Factor out most of this code intoBarry Warsaw2001-08-241-114/+1
* PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function callTim Peters2001-05-301-1/+1