index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_exceptions.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
PEP 415: Implement suppression of __context__ display with an exception attri...
Benjamin Peterson
2012-05-15
1
-7/+8
*
Issue #1559549: Add 'name' and 'path' attributes to ImportError.
Brett Cannon
2012-04-13
1
-1/+23
*
- Issue #14177: marshal.loads() now raises TypeError when given an unicode
Antoine Pitrou
2012-03-03
1
-1/+1
|
\
|
*
Issue #14177: marshal.loads() now raises TypeError when given an unicode string.
Antoine Pitrou
2012-03-03
1
-1/+1
*
|
Close issue #6210: Implement PEP 409
Nick Coghlan
2012-02-26
1
-6/+23
*
|
PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.
Antoine Pitrou
2011-10-12
1
-9/+34
*
|
Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
Antoine Pitrou
2011-09-01
1
-0/+8
|
\
\
|
|
/
|
*
Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
Antoine Pitrou
2011-09-01
1
-0/+8
*
|
Issue #12791: Break reference cycles early when a generator exits with an exc...
Antoine Pitrou
2011-08-20
1
-0/+62
|
\
\
|
|
/
|
*
Issue #12791: Break reference cycles early when a generator exits with an exc...
Antoine Pitrou
2011-08-20
1
-0/+62
*
|
merge 3.2
Benjamin Peterson
2011-07-03
1
-0/+12
|
\
\
|
|
/
|
*
never retain a generator's caller's exception state on the generator after a ...
Benjamin Peterson
2011-07-03
1
-0/+12
*
|
merge 3.2 (#12475)
Benjamin Peterson
2011-07-03
1
-0/+15
|
\
\
|
|
/
|
*
restore a generator's caller's exception state both on yield and (last) return
Benjamin Peterson
2011-07-03
1
-0/+15
*
|
Issue #10990: Prevent tests from clobbering a set trace function.
Brett Cannon
2011-02-21
1
-1/+4
|
/
*
#9424: Replace deprecated assert* methods in the Python test suite.
Ezio Melotti
2010-11-20
1
-30/+29
*
Issue #5437: A preallocated MemoryError instance should not hold traceback
Antoine Pitrou
2010-10-28
1
-0/+39
*
#4617: Previously it was illegal to delete a name from the local
Amaury Forgeot d'Arc
2010-09-10
1
-0/+11
*
Merged revisions 82330 via svnmerge from
Benjamin Peterson
2010-06-28
1
-1/+3
*
prevent generator finalization from invalidating sys.exc_info() #7173
Benjamin Peterson
2010-03-07
1
-1/+16
*
Merged revisions 78418 via svnmerge from
Eric Smith
2010-02-24
1
-0/+36
*
Merged revisions 77727 via svnmerge from
Ezio Melotti
2010-01-24
1
-3/+3
*
use assert[Not]In where appropriate
Ezio Melotti
2010-01-23
1
-1/+1
*
use assert[Not]In where appropriate
Benjamin Peterson
2010-01-19
1
-2/+2
*
Merged revisions 77088 via svnmerge from
Georg Brandl
2009-12-28
1
-0/+40
*
Remove test for unicode(e) converted to str(e) by 2to3
Ezio Melotti
2009-12-24
1
-5/+3
*
convert old fail* assertions to assert*
Benjamin Peterson
2009-06-30
1
-25/+25
*
Fix segfaults when running test_exceptions with coverage tracing, caused by w...
Georg Brandl
2009-03-31
1
-0/+6
*
Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to
Antoine Pitrou
2008-08-26
1
-5/+11
*
move test to a better location
Benjamin Peterson
2008-08-21
1
-21/+0
*
apply a fix for #3611 where the current exception context was deleted with a ...
Benjamin Peterson
2008-08-20
1
-0/+22
*
add _testcapi.raise_memoryerror to make test_exceptions.test_MemoryError simpler
Benjamin Peterson
2008-08-16
1
-1/+2
*
Merged revisions 65339-65340,65342 via svnmerge from
Amaury Forgeot d'Arc
2008-08-01
1
-8/+0
*
Correct one of the "MemoryError oddities":
Amaury Forgeot d'Arc
2008-07-31
1
-0/+18
*
Merged revisions 65320 via svnmerge from
Benjamin Peterson
2008-07-31
1
-2/+33
*
improvements to the fix for #3114
Benjamin Peterson
2008-06-15
1
-9/+4
*
#3114 fix a bus error when deallocated exceptions were used
Benjamin Peterson
2008-06-15
1
-0/+19
*
Implicit exception chaining via __context__ (PEP 3134).
Guido van Rossum
2008-06-14
1
-1/+6
*
#3021: Antoine Pitrou's Lexical exception handlers
Benjamin Peterson
2008-06-11
1
-0/+108
*
Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.
Georg Brandl
2008-06-04
1
-4/+4
*
Revert r63934 -- it was mixing two patches.
Georg Brandl
2008-06-04
1
-4/+4
*
Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.
Georg Brandl
2008-06-04
1
-4/+4
*
#2621 rename test.test_support to test.support
Benjamin Peterson
2008-05-20
1
-1/+1
*
Antoine Pitrou's patch for bug 2507; exception state lives too long in
Barry Warsaw
2008-05-08
1
-2/+29
*
#1535: rename __builtin__ module to builtins.
Georg Brandl
2007-12-02
1
-1/+1
*
Rename buffer -> bytearray.
Guido van Rossum
2007-11-21
1
-2/+2
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-1/+7
*
Issue #1066: implement PEP 3109, 2/3 of PEP 3134.
Collin Winter
2007-08-31
1
-2/+58
*
First merge from the trunk straight into the py3k branch. I'm not
Guido van Rossum
2007-08-16
1
-2/+1
*
Remove RISCOS support
Skip Montanaro
2007-08-16
1
-2/+2
[next]