aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/errors.c
Commit message (Expand)AuthorAge
* Issue #10780: PyErr_SetFromWindowsErrWithFilename() andVictor Stinner2010-12-28
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-28
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-24
* PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead ofVictor Stinner2010-10-17
* add PyErr_SyntaxLocationEx, to support adding a column offsetBenjamin Peterson2010-09-20
* Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#Victor Stinner2010-06-07
* Make PyErr_Occurred return NULL if there is no current thread. Previously itJeffrey Yasskin2010-05-13
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-09
* PyErr_SetFromErrnoWithFilename() decodes the filename usingVictor Stinner2010-05-08
* Poor PLAN9, it isn't supportedAntoine Pitrou2010-02-22
* Merged revisions 77088 via svnmerge fromGeorg Brandl2009-12-28
* Merged revisions 72698-72699 via svnmerge fromHirokazu Yamamoto2009-05-17
* Merged revisions 71024,71058 via svnmerge fromGeorg Brandl2009-04-11
* Issue 3611: in some cases (a __del__ re-raising an exception, when called fro...Amaury Forgeot d'Arc2008-08-29
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-26
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-07
* Correct one of the "MemoryError oddities":Amaury Forgeot d'Arc2008-07-31
* Merged revisions 65320 via svnmerge fromBenjamin Peterson2008-07-31
* implement chained exception tracebacksBenjamin Peterson2008-07-15
* Implicit exception chaining via __context__ (PEP 3134).Guido van Rossum2008-06-14
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-13
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-03
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-02
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-02
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-15
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-02
* Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the codeGuido van Rossum2007-10-10
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-08
* Patch #1075: Use wide API to format error messages.Martin v. Löwis2007-09-03
* Add const to some strings that are not modifiedNeal Norwitz2007-08-24
* Use unicode for much of errors.Neal Norwitz2007-08-24
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-12
* Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.Guido van Rossum2007-07-16
* Revert a wrong commit.Thomas Heller2007-07-11
* Must create heaptypes with unicode names.Thomas Heller2007-07-11
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-25
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-18
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-27
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-26
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-09
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-13
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-11
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-08
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-27
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Fix (and add test for) missing check for BaseException subclasses in the CThomas Wouters2006-04-20
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-15
* 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