summaryrefslogtreecommitdiff
path: root/Objects/exceptions.c
Commit message (Expand)AuthorAgeFilesLines
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-131-14/+7
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-3/+3
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-2/+2
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-17/+17
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-6/+8
* Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-271-35/+22
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-5/+3
* bail in unicode error's __str__ methods if the objects are not properly initi...Benjamin Peterson2014-04-021-0/+12
* Issue #16445: Fix potential segmentation fault when deleting an exception mes...Mark Dickinson2013-03-031-2/+1
* this is only a borrowed ref in Brett's branchBenjamin Peterson2012-02-101-1/+1
* bltinmod is borrowed, so it shouldn't be decrefedBenjamin Peterson2012-02-061-1/+0
* put returns on their own linesBenjamin Peterson2012-02-031-6/+12
* remove INT_MAX assertions; they can fail with large Py_ssize_t #9058Benjamin Peterson2010-06-221-3/+0
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-24/+24
* Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, Uni...Eric Smith2010-02-241-36/+78
* #6108: unicode(exception) and str(exception) should return the same messageEzio Melotti2009-12-241-0/+15
* #6844: do not emit DeprecationWarnings on access if Exception.message has bee...Georg Brandl2009-09-161-18/+39
* Remove unused macro.Georg Brandl2009-06-161-1/+0
* Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini.Alexandre Vassalotti2009-06-121-2/+2
* Issue 4804. Add a function to test the validity of file descriptors on Windo...Kristján Valur Jónsson2009-02-101-34/+0
* #4077: No need to append \n when calling Py_FatalErrorAmaury Forgeot d'Arc2009-01-171-1/+1
* backport r64751Benjamin Peterson2008-07-301-0/+2
* Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing...Nick Coghlan2008-07-081-0/+25
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-48/+48
* Renamed PyString to PyBytesChristian Heimes2008-05-261-48/+48
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-6/+4
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-12/+6
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-0/+8
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-8/+8
* Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje...Travis E. Oliphant2008-03-181-0/+5
* - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ onGuido van Rossum2008-03-181-0/+12
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-12/+12
* Patch #1537 from Chad AustinChristian Heimes2007-12-031-2/+2
* Fix a crasher where Python code managed to infinitely recurse in C code withoutBrett Cannon2007-09-071-0/+29
* Revert accidental checkins from last commit.Georg Brandl2007-08-211-32/+6
* Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.Georg Brandl2007-08-211-6/+32
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-12/+12
* Add T_PYSSIZET in structmember.h: This can be used forWalter Dörwald2007-06-131-166/+102
* Complete deprecation of BaseException.message. Some subclasses were directlyBrett Cannon2007-05-171-10/+0
* Deprecate BaseException.message as per PEP 352.Brett Cannon2007-05-051-8/+34
* Add some missing NULL checks which trigger crashes on low-memory conditions.Georg Brandl2007-04-111-0/+2
* Variation of patch # 1624059 to speed up checking if an object is a subclassNeal Norwitz2007-02-251-1/+2
* WindowsError.str should display the windows error code,Thomas Heller2006-10-271-7/+7
* Bug #1566800: make sure that EnvironmentError can be called with anyGeorg Brandl2006-09-301-1/+1
* Allow exceptions to be directly sliced againBrett Cannon2006-09-201-1/+8
* Remove the __unicode__ method from exceptions. Allows unicode() to be calledBrett Cannon2006-09-091-17/+0
* Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.Georg Brandl2006-09-061-2/+8
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-141-0/+10
* Fix build problems with the platform SDK on windows. It is not sufficient to...Kristján Valur Jónsson2006-07-031-3/+3
* Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CR...Kristján Valur Jónsson2006-06-121-0/+35