2006-03-01 00:25:17 -04:00
|
|
|
import unittest
|
|
|
|
import __builtin__
|
|
|
|
import warnings
|
Merged revisions 53538-53622 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53545 | andrew.kuchling | 2007-01-24 21:06:41 +0100 (Wed, 24 Jan 2007) | 1 line
Strengthen warning about using lock()
........
r53556 | thomas.heller | 2007-01-25 19:34:14 +0100 (Thu, 25 Jan 2007) | 3 lines
Fix for #1643874: When calling SysAllocString, create a PyCObject
which will eventually call SysFreeString to free the BSTR resource.
........
r53563 | andrew.kuchling | 2007-01-25 21:02:13 +0100 (Thu, 25 Jan 2007) | 1 line
Add item
........
r53564 | brett.cannon | 2007-01-25 21:22:02 +0100 (Thu, 25 Jan 2007) | 8 lines
Fix time.strptime's %U support. Basically rewrote the algorithm to be more
generic so that one only has to shift certain values based on whether the week
was specified to start on Monday or Sunday. Cut out a lot of edge case code
compared to the previous version. Also broke algorithm out into its own
function (that is private to the module).
Fixes bug #1643943 (thanks Biran Nahas for the report).
........
r53570 | brett.cannon | 2007-01-26 00:30:39 +0100 (Fri, 26 Jan 2007) | 4 lines
Remove specific mention of my name and email address from modules. Not really
needed and all bug reports should go to the bug tracker, not directly to me.
Plus I am not the only person to have edited these files at this point.
........
r53573 | fred.drake | 2007-01-26 17:28:44 +0100 (Fri, 26 Jan 2007) | 1 line
fix typo (extraneous ")")
........
r53575 | georg.brandl | 2007-01-27 18:43:02 +0100 (Sat, 27 Jan 2007) | 4 lines
Patch #1638243: the compiler package is now able to correctly compile
a with statement; previously, executing code containing a with statement
compiled by the compiler package crashed the interpreter.
........
r53578 | georg.brandl | 2007-01-27 18:59:42 +0100 (Sat, 27 Jan 2007) | 3 lines
Patch #1634778: add missing encoding aliases for iso8859_15 and
iso8859_16.
........
r53579 | georg.brandl | 2007-01-27 20:38:50 +0100 (Sat, 27 Jan 2007) | 2 lines
Bug #1645944: os.access now returns bool but docstring is not updated
........
r53590 | brett.cannon | 2007-01-28 21:58:00 +0100 (Sun, 28 Jan 2007) | 2 lines
Use the thread lock's context manager instead of a try/finally statement.
........
r53591 | brett.cannon | 2007-01-29 05:41:44 +0100 (Mon, 29 Jan 2007) | 2 lines
Add a test for slicing an exception.
........
r53594 | andrew.kuchling | 2007-01-29 21:21:43 +0100 (Mon, 29 Jan 2007) | 1 line
Minor edits to the curses HOWTO
........
r53596 | andrew.kuchling | 2007-01-29 21:55:40 +0100 (Mon, 29 Jan 2007) | 1 line
Various minor edits
........
r53597 | andrew.kuchling | 2007-01-29 22:28:48 +0100 (Mon, 29 Jan 2007) | 1 line
More edits
........
r53601 | tim.peters | 2007-01-30 04:03:46 +0100 (Tue, 30 Jan 2007) | 2 lines
Whitespace normalization.
........
r53603 | georg.brandl | 2007-01-30 21:21:30 +0100 (Tue, 30 Jan 2007) | 2 lines
Bug #1648191: typo in docs.
........
r53605 | brett.cannon | 2007-01-30 22:34:36 +0100 (Tue, 30 Jan 2007) | 8 lines
No more raising of string exceptions!
The next step of PEP 352 (for 2.6) causes raising a string exception to trigger
a TypeError. Trying to catch a string exception raises a DeprecationWarning.
References to string exceptions has been removed from the docs since they are
now just an error.
........
r53618 | raymond.hettinger | 2007-02-01 22:02:59 +0100 (Thu, 01 Feb 2007) | 1 line
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses.
........
2007-02-04 21:24:16 -04:00
|
|
|
from test.test_support import run_unittest, guard_warnings_filter
|
2006-03-01 00:25:17 -04:00
|
|
|
import os
|
|
|
|
from platform import system as platform_system
|
|
|
|
|
|
|
|
class ExceptionClassTests(unittest.TestCase):
|
|
|
|
|
|
|
|
"""Tests for anything relating to exception objects themselves (e.g.,
|
|
|
|
inheritance hierarchy)"""
|
|
|
|
|
|
|
|
def test_builtins_new_style(self):
|
|
|
|
self.failUnless(issubclass(Exception, object))
|
|
|
|
|
|
|
|
def verify_instance_interface(self, ins):
|
2007-02-26 20:15:55 -04:00
|
|
|
for attr in ("args", "message", "__str__", "__repr__"):
|
2006-03-01 00:25:17 -04:00
|
|
|
self.failUnless(hasattr(ins, attr), "%s missing %s attribute" %
|
|
|
|
(ins.__class__.__name__, attr))
|
|
|
|
|
|
|
|
def test_inheritance(self):
|
|
|
|
# Make sure the inheritance hierarchy matches the documentation
|
2007-02-27 20:01:43 -04:00
|
|
|
exc_set = set()
|
|
|
|
for object_ in __builtins__.__dict__.values():
|
|
|
|
try:
|
|
|
|
if issubclass(object_, BaseException):
|
|
|
|
exc_set.add(object_.__name__)
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
2006-03-01 00:25:17 -04:00
|
|
|
inheritance_tree = open(os.path.join(os.path.split(__file__)[0],
|
|
|
|
'exception_hierarchy.txt'))
|
|
|
|
try:
|
|
|
|
superclass_name = inheritance_tree.readline().rstrip()
|
|
|
|
try:
|
|
|
|
last_exc = getattr(__builtin__, superclass_name)
|
|
|
|
except AttributeError:
|
|
|
|
self.fail("base class %s not a built-in" % superclass_name)
|
|
|
|
self.failUnless(superclass_name in exc_set)
|
|
|
|
exc_set.discard(superclass_name)
|
|
|
|
superclasses = [] # Loop will insert base exception
|
|
|
|
last_depth = 0
|
|
|
|
for exc_line in inheritance_tree:
|
|
|
|
exc_line = exc_line.rstrip()
|
|
|
|
depth = exc_line.rindex('-')
|
|
|
|
exc_name = exc_line[depth+2:] # Slice past space
|
|
|
|
if '(' in exc_name:
|
|
|
|
paren_index = exc_name.index('(')
|
|
|
|
platform_name = exc_name[paren_index+1:-1]
|
2006-03-01 02:10:48 -04:00
|
|
|
exc_name = exc_name[:paren_index-1] # Slice off space
|
2006-03-01 00:25:17 -04:00
|
|
|
if platform_system() != platform_name:
|
|
|
|
exc_set.discard(exc_name)
|
|
|
|
continue
|
|
|
|
if '[' in exc_name:
|
|
|
|
left_bracket = exc_name.index('[')
|
|
|
|
exc_name = exc_name[:left_bracket-1] # cover space
|
|
|
|
try:
|
|
|
|
exc = getattr(__builtin__, exc_name)
|
|
|
|
except AttributeError:
|
|
|
|
self.fail("%s not a built-in exception" % exc_name)
|
|
|
|
if last_depth < depth:
|
|
|
|
superclasses.append((last_depth, last_exc))
|
|
|
|
elif last_depth > depth:
|
|
|
|
while superclasses[-1][0] >= depth:
|
|
|
|
superclasses.pop()
|
|
|
|
self.failUnless(issubclass(exc, superclasses[-1][1]),
|
|
|
|
"%s is not a subclass of %s" % (exc.__name__,
|
|
|
|
superclasses[-1][1].__name__))
|
|
|
|
try: # Some exceptions require arguments; just skip them
|
|
|
|
self.verify_instance_interface(exc())
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
self.failUnless(exc_name in exc_set)
|
|
|
|
exc_set.discard(exc_name)
|
|
|
|
last_exc = exc
|
|
|
|
last_depth = depth
|
|
|
|
finally:
|
|
|
|
inheritance_tree.close()
|
|
|
|
self.failUnlessEqual(len(exc_set), 0, "%s not accounted for" % exc_set)
|
|
|
|
|
2007-02-26 20:15:55 -04:00
|
|
|
interface_tests = ("length", "args", "message", "str", "unicode", "repr")
|
2006-03-01 00:25:17 -04:00
|
|
|
|
|
|
|
def interface_test_driver(self, results):
|
|
|
|
for test_name, (given, expected) in zip(self.interface_tests, results):
|
|
|
|
self.failUnlessEqual(given, expected, "%s: %s != %s" % (test_name,
|
|
|
|
given, expected))
|
|
|
|
|
|
|
|
def test_interface_single_arg(self):
|
|
|
|
# Make sure interface works properly when given a single argument
|
|
|
|
arg = "spam"
|
|
|
|
exc = Exception(arg)
|
|
|
|
results = ([len(exc.args), 1], [exc.args[0], arg], [exc.message, arg],
|
|
|
|
[str(exc), str(arg)], [unicode(exc), unicode(arg)],
|
2007-02-26 20:15:55 -04:00
|
|
|
[repr(exc), exc.__class__.__name__ + repr(exc.args)])
|
2006-03-01 00:25:17 -04:00
|
|
|
self.interface_test_driver(results)
|
|
|
|
|
|
|
|
def test_interface_multi_arg(self):
|
|
|
|
# Make sure interface correct when multiple arguments given
|
|
|
|
arg_count = 3
|
|
|
|
args = tuple(range(arg_count))
|
|
|
|
exc = Exception(*args)
|
|
|
|
results = ([len(exc.args), arg_count], [exc.args, args],
|
|
|
|
[exc.message, ''], [str(exc), str(args)],
|
|
|
|
[unicode(exc), unicode(args)],
|
2007-02-26 20:15:55 -04:00
|
|
|
[repr(exc), exc.__class__.__name__ + repr(exc.args)])
|
2006-03-01 00:25:17 -04:00
|
|
|
self.interface_test_driver(results)
|
|
|
|
|
|
|
|
def test_interface_no_arg(self):
|
|
|
|
# Make sure that with no args that interface is correct
|
|
|
|
exc = Exception()
|
|
|
|
results = ([len(exc.args), 0], [exc.args, tuple()], [exc.message, ''],
|
|
|
|
[str(exc), ''], [unicode(exc), u''],
|
2007-02-26 20:15:55 -04:00
|
|
|
[repr(exc), exc.__class__.__name__ + '()'])
|
2006-03-01 00:25:17 -04:00
|
|
|
self.interface_test_driver(results)
|
|
|
|
|
|
|
|
class UsageTests(unittest.TestCase):
|
|
|
|
|
|
|
|
"""Test usage of exceptions"""
|
|
|
|
|
2007-02-23 16:24:22 -04:00
|
|
|
def raise_fails(self, object_):
|
|
|
|
"""Make sure that raising 'object_' triggers a TypeError."""
|
|
|
|
try:
|
|
|
|
raise object_
|
|
|
|
except TypeError:
|
|
|
|
return # What is expected.
|
|
|
|
self.fail("TypeError expected for raising %s" % type(object_))
|
|
|
|
|
|
|
|
def catch_fails(self, object_):
|
|
|
|
"""Catching 'object_' should raise a TypeError."""
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
raise StandardError
|
|
|
|
except object_:
|
|
|
|
pass
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
except StandardError:
|
|
|
|
self.fail("TypeError expected when catching %s" % type(object_))
|
|
|
|
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
raise StandardError
|
|
|
|
except (object_,):
|
|
|
|
pass
|
|
|
|
except TypeError:
|
|
|
|
return
|
|
|
|
except StandardError:
|
|
|
|
self.fail("TypeError expected when catching %s as specified in a "
|
|
|
|
"tuple" % type(object_))
|
|
|
|
|
2006-03-01 00:25:17 -04:00
|
|
|
def test_raise_new_style_non_exception(self):
|
Merged revisions 53538-53622 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53545 | andrew.kuchling | 2007-01-24 21:06:41 +0100 (Wed, 24 Jan 2007) | 1 line
Strengthen warning about using lock()
........
r53556 | thomas.heller | 2007-01-25 19:34:14 +0100 (Thu, 25 Jan 2007) | 3 lines
Fix for #1643874: When calling SysAllocString, create a PyCObject
which will eventually call SysFreeString to free the BSTR resource.
........
r53563 | andrew.kuchling | 2007-01-25 21:02:13 +0100 (Thu, 25 Jan 2007) | 1 line
Add item
........
r53564 | brett.cannon | 2007-01-25 21:22:02 +0100 (Thu, 25 Jan 2007) | 8 lines
Fix time.strptime's %U support. Basically rewrote the algorithm to be more
generic so that one only has to shift certain values based on whether the week
was specified to start on Monday or Sunday. Cut out a lot of edge case code
compared to the previous version. Also broke algorithm out into its own
function (that is private to the module).
Fixes bug #1643943 (thanks Biran Nahas for the report).
........
r53570 | brett.cannon | 2007-01-26 00:30:39 +0100 (Fri, 26 Jan 2007) | 4 lines
Remove specific mention of my name and email address from modules. Not really
needed and all bug reports should go to the bug tracker, not directly to me.
Plus I am not the only person to have edited these files at this point.
........
r53573 | fred.drake | 2007-01-26 17:28:44 +0100 (Fri, 26 Jan 2007) | 1 line
fix typo (extraneous ")")
........
r53575 | georg.brandl | 2007-01-27 18:43:02 +0100 (Sat, 27 Jan 2007) | 4 lines
Patch #1638243: the compiler package is now able to correctly compile
a with statement; previously, executing code containing a with statement
compiled by the compiler package crashed the interpreter.
........
r53578 | georg.brandl | 2007-01-27 18:59:42 +0100 (Sat, 27 Jan 2007) | 3 lines
Patch #1634778: add missing encoding aliases for iso8859_15 and
iso8859_16.
........
r53579 | georg.brandl | 2007-01-27 20:38:50 +0100 (Sat, 27 Jan 2007) | 2 lines
Bug #1645944: os.access now returns bool but docstring is not updated
........
r53590 | brett.cannon | 2007-01-28 21:58:00 +0100 (Sun, 28 Jan 2007) | 2 lines
Use the thread lock's context manager instead of a try/finally statement.
........
r53591 | brett.cannon | 2007-01-29 05:41:44 +0100 (Mon, 29 Jan 2007) | 2 lines
Add a test for slicing an exception.
........
r53594 | andrew.kuchling | 2007-01-29 21:21:43 +0100 (Mon, 29 Jan 2007) | 1 line
Minor edits to the curses HOWTO
........
r53596 | andrew.kuchling | 2007-01-29 21:55:40 +0100 (Mon, 29 Jan 2007) | 1 line
Various minor edits
........
r53597 | andrew.kuchling | 2007-01-29 22:28:48 +0100 (Mon, 29 Jan 2007) | 1 line
More edits
........
r53601 | tim.peters | 2007-01-30 04:03:46 +0100 (Tue, 30 Jan 2007) | 2 lines
Whitespace normalization.
........
r53603 | georg.brandl | 2007-01-30 21:21:30 +0100 (Tue, 30 Jan 2007) | 2 lines
Bug #1648191: typo in docs.
........
r53605 | brett.cannon | 2007-01-30 22:34:36 +0100 (Tue, 30 Jan 2007) | 8 lines
No more raising of string exceptions!
The next step of PEP 352 (for 2.6) causes raising a string exception to trigger
a TypeError. Trying to catch a string exception raises a DeprecationWarning.
References to string exceptions has been removed from the docs since they are
now just an error.
........
r53618 | raymond.hettinger | 2007-02-01 22:02:59 +0100 (Thu, 01 Feb 2007) | 1 line
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses.
........
2007-02-04 21:24:16 -04:00
|
|
|
# You cannot raise a new-style class that does not inherit from
|
|
|
|
# BaseException; the ability was not possible until BaseException's
|
|
|
|
# introduction so no need to support new-style objects that do not
|
|
|
|
# inherit from it.
|
2006-03-01 00:25:17 -04:00
|
|
|
class NewStyleClass(object):
|
|
|
|
pass
|
2007-02-23 16:24:22 -04:00
|
|
|
self.raise_fails(NewStyleClass)
|
|
|
|
self.raise_fails(NewStyleClass())
|
Merged revisions 53538-53622 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53545 | andrew.kuchling | 2007-01-24 21:06:41 +0100 (Wed, 24 Jan 2007) | 1 line
Strengthen warning about using lock()
........
r53556 | thomas.heller | 2007-01-25 19:34:14 +0100 (Thu, 25 Jan 2007) | 3 lines
Fix for #1643874: When calling SysAllocString, create a PyCObject
which will eventually call SysFreeString to free the BSTR resource.
........
r53563 | andrew.kuchling | 2007-01-25 21:02:13 +0100 (Thu, 25 Jan 2007) | 1 line
Add item
........
r53564 | brett.cannon | 2007-01-25 21:22:02 +0100 (Thu, 25 Jan 2007) | 8 lines
Fix time.strptime's %U support. Basically rewrote the algorithm to be more
generic so that one only has to shift certain values based on whether the week
was specified to start on Monday or Sunday. Cut out a lot of edge case code
compared to the previous version. Also broke algorithm out into its own
function (that is private to the module).
Fixes bug #1643943 (thanks Biran Nahas for the report).
........
r53570 | brett.cannon | 2007-01-26 00:30:39 +0100 (Fri, 26 Jan 2007) | 4 lines
Remove specific mention of my name and email address from modules. Not really
needed and all bug reports should go to the bug tracker, not directly to me.
Plus I am not the only person to have edited these files at this point.
........
r53573 | fred.drake | 2007-01-26 17:28:44 +0100 (Fri, 26 Jan 2007) | 1 line
fix typo (extraneous ")")
........
r53575 | georg.brandl | 2007-01-27 18:43:02 +0100 (Sat, 27 Jan 2007) | 4 lines
Patch #1638243: the compiler package is now able to correctly compile
a with statement; previously, executing code containing a with statement
compiled by the compiler package crashed the interpreter.
........
r53578 | georg.brandl | 2007-01-27 18:59:42 +0100 (Sat, 27 Jan 2007) | 3 lines
Patch #1634778: add missing encoding aliases for iso8859_15 and
iso8859_16.
........
r53579 | georg.brandl | 2007-01-27 20:38:50 +0100 (Sat, 27 Jan 2007) | 2 lines
Bug #1645944: os.access now returns bool but docstring is not updated
........
r53590 | brett.cannon | 2007-01-28 21:58:00 +0100 (Sun, 28 Jan 2007) | 2 lines
Use the thread lock's context manager instead of a try/finally statement.
........
r53591 | brett.cannon | 2007-01-29 05:41:44 +0100 (Mon, 29 Jan 2007) | 2 lines
Add a test for slicing an exception.
........
r53594 | andrew.kuchling | 2007-01-29 21:21:43 +0100 (Mon, 29 Jan 2007) | 1 line
Minor edits to the curses HOWTO
........
r53596 | andrew.kuchling | 2007-01-29 21:55:40 +0100 (Mon, 29 Jan 2007) | 1 line
Various minor edits
........
r53597 | andrew.kuchling | 2007-01-29 22:28:48 +0100 (Mon, 29 Jan 2007) | 1 line
More edits
........
r53601 | tim.peters | 2007-01-30 04:03:46 +0100 (Tue, 30 Jan 2007) | 2 lines
Whitespace normalization.
........
r53603 | georg.brandl | 2007-01-30 21:21:30 +0100 (Tue, 30 Jan 2007) | 2 lines
Bug #1648191: typo in docs.
........
r53605 | brett.cannon | 2007-01-30 22:34:36 +0100 (Tue, 30 Jan 2007) | 8 lines
No more raising of string exceptions!
The next step of PEP 352 (for 2.6) causes raising a string exception to trigger
a TypeError. Trying to catch a string exception raises a DeprecationWarning.
References to string exceptions has been removed from the docs since they are
now just an error.
........
r53618 | raymond.hettinger | 2007-02-01 22:02:59 +0100 (Thu, 01 Feb 2007) | 1 line
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses.
........
2007-02-04 21:24:16 -04:00
|
|
|
|
|
|
|
def test_raise_string(self):
|
|
|
|
# Raising a string raises TypeError.
|
2007-02-23 16:24:22 -04:00
|
|
|
self.raise_fails("spam")
|
Merged revisions 53538-53622 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53545 | andrew.kuchling | 2007-01-24 21:06:41 +0100 (Wed, 24 Jan 2007) | 1 line
Strengthen warning about using lock()
........
r53556 | thomas.heller | 2007-01-25 19:34:14 +0100 (Thu, 25 Jan 2007) | 3 lines
Fix for #1643874: When calling SysAllocString, create a PyCObject
which will eventually call SysFreeString to free the BSTR resource.
........
r53563 | andrew.kuchling | 2007-01-25 21:02:13 +0100 (Thu, 25 Jan 2007) | 1 line
Add item
........
r53564 | brett.cannon | 2007-01-25 21:22:02 +0100 (Thu, 25 Jan 2007) | 8 lines
Fix time.strptime's %U support. Basically rewrote the algorithm to be more
generic so that one only has to shift certain values based on whether the week
was specified to start on Monday or Sunday. Cut out a lot of edge case code
compared to the previous version. Also broke algorithm out into its own
function (that is private to the module).
Fixes bug #1643943 (thanks Biran Nahas for the report).
........
r53570 | brett.cannon | 2007-01-26 00:30:39 +0100 (Fri, 26 Jan 2007) | 4 lines
Remove specific mention of my name and email address from modules. Not really
needed and all bug reports should go to the bug tracker, not directly to me.
Plus I am not the only person to have edited these files at this point.
........
r53573 | fred.drake | 2007-01-26 17:28:44 +0100 (Fri, 26 Jan 2007) | 1 line
fix typo (extraneous ")")
........
r53575 | georg.brandl | 2007-01-27 18:43:02 +0100 (Sat, 27 Jan 2007) | 4 lines
Patch #1638243: the compiler package is now able to correctly compile
a with statement; previously, executing code containing a with statement
compiled by the compiler package crashed the interpreter.
........
r53578 | georg.brandl | 2007-01-27 18:59:42 +0100 (Sat, 27 Jan 2007) | 3 lines
Patch #1634778: add missing encoding aliases for iso8859_15 and
iso8859_16.
........
r53579 | georg.brandl | 2007-01-27 20:38:50 +0100 (Sat, 27 Jan 2007) | 2 lines
Bug #1645944: os.access now returns bool but docstring is not updated
........
r53590 | brett.cannon | 2007-01-28 21:58:00 +0100 (Sun, 28 Jan 2007) | 2 lines
Use the thread lock's context manager instead of a try/finally statement.
........
r53591 | brett.cannon | 2007-01-29 05:41:44 +0100 (Mon, 29 Jan 2007) | 2 lines
Add a test for slicing an exception.
........
r53594 | andrew.kuchling | 2007-01-29 21:21:43 +0100 (Mon, 29 Jan 2007) | 1 line
Minor edits to the curses HOWTO
........
r53596 | andrew.kuchling | 2007-01-29 21:55:40 +0100 (Mon, 29 Jan 2007) | 1 line
Various minor edits
........
r53597 | andrew.kuchling | 2007-01-29 22:28:48 +0100 (Mon, 29 Jan 2007) | 1 line
More edits
........
r53601 | tim.peters | 2007-01-30 04:03:46 +0100 (Tue, 30 Jan 2007) | 2 lines
Whitespace normalization.
........
r53603 | georg.brandl | 2007-01-30 21:21:30 +0100 (Tue, 30 Jan 2007) | 2 lines
Bug #1648191: typo in docs.
........
r53605 | brett.cannon | 2007-01-30 22:34:36 +0100 (Tue, 30 Jan 2007) | 8 lines
No more raising of string exceptions!
The next step of PEP 352 (for 2.6) causes raising a string exception to trigger
a TypeError. Trying to catch a string exception raises a DeprecationWarning.
References to string exceptions has been removed from the docs since they are
now just an error.
........
r53618 | raymond.hettinger | 2007-02-01 22:02:59 +0100 (Thu, 01 Feb 2007) | 1 line
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses.
........
2007-02-04 21:24:16 -04:00
|
|
|
|
2007-02-26 17:10:16 -04:00
|
|
|
def test_catch_non_BaseException(self):
|
|
|
|
# Tryinng to catch an object that does not inherit from BaseException
|
|
|
|
# is not allowed.
|
|
|
|
class NonBaseException(object):
|
|
|
|
pass
|
|
|
|
self.catch_fails(NonBaseException)
|
|
|
|
self.catch_fails(NonBaseException())
|
|
|
|
|
2007-02-26 20:15:55 -04:00
|
|
|
def test_catch_BaseException_instance(self):
|
|
|
|
# Catching an instance of a BaseException subclass won't work.
|
|
|
|
self.catch_fails(BaseException())
|
|
|
|
|
Merged revisions 53538-53622 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r53545 | andrew.kuchling | 2007-01-24 21:06:41 +0100 (Wed, 24 Jan 2007) | 1 line
Strengthen warning about using lock()
........
r53556 | thomas.heller | 2007-01-25 19:34:14 +0100 (Thu, 25 Jan 2007) | 3 lines
Fix for #1643874: When calling SysAllocString, create a PyCObject
which will eventually call SysFreeString to free the BSTR resource.
........
r53563 | andrew.kuchling | 2007-01-25 21:02:13 +0100 (Thu, 25 Jan 2007) | 1 line
Add item
........
r53564 | brett.cannon | 2007-01-25 21:22:02 +0100 (Thu, 25 Jan 2007) | 8 lines
Fix time.strptime's %U support. Basically rewrote the algorithm to be more
generic so that one only has to shift certain values based on whether the week
was specified to start on Monday or Sunday. Cut out a lot of edge case code
compared to the previous version. Also broke algorithm out into its own
function (that is private to the module).
Fixes bug #1643943 (thanks Biran Nahas for the report).
........
r53570 | brett.cannon | 2007-01-26 00:30:39 +0100 (Fri, 26 Jan 2007) | 4 lines
Remove specific mention of my name and email address from modules. Not really
needed and all bug reports should go to the bug tracker, not directly to me.
Plus I am not the only person to have edited these files at this point.
........
r53573 | fred.drake | 2007-01-26 17:28:44 +0100 (Fri, 26 Jan 2007) | 1 line
fix typo (extraneous ")")
........
r53575 | georg.brandl | 2007-01-27 18:43:02 +0100 (Sat, 27 Jan 2007) | 4 lines
Patch #1638243: the compiler package is now able to correctly compile
a with statement; previously, executing code containing a with statement
compiled by the compiler package crashed the interpreter.
........
r53578 | georg.brandl | 2007-01-27 18:59:42 +0100 (Sat, 27 Jan 2007) | 3 lines
Patch #1634778: add missing encoding aliases for iso8859_15 and
iso8859_16.
........
r53579 | georg.brandl | 2007-01-27 20:38:50 +0100 (Sat, 27 Jan 2007) | 2 lines
Bug #1645944: os.access now returns bool but docstring is not updated
........
r53590 | brett.cannon | 2007-01-28 21:58:00 +0100 (Sun, 28 Jan 2007) | 2 lines
Use the thread lock's context manager instead of a try/finally statement.
........
r53591 | brett.cannon | 2007-01-29 05:41:44 +0100 (Mon, 29 Jan 2007) | 2 lines
Add a test for slicing an exception.
........
r53594 | andrew.kuchling | 2007-01-29 21:21:43 +0100 (Mon, 29 Jan 2007) | 1 line
Minor edits to the curses HOWTO
........
r53596 | andrew.kuchling | 2007-01-29 21:55:40 +0100 (Mon, 29 Jan 2007) | 1 line
Various minor edits
........
r53597 | andrew.kuchling | 2007-01-29 22:28:48 +0100 (Mon, 29 Jan 2007) | 1 line
More edits
........
r53601 | tim.peters | 2007-01-30 04:03:46 +0100 (Tue, 30 Jan 2007) | 2 lines
Whitespace normalization.
........
r53603 | georg.brandl | 2007-01-30 21:21:30 +0100 (Tue, 30 Jan 2007) | 2 lines
Bug #1648191: typo in docs.
........
r53605 | brett.cannon | 2007-01-30 22:34:36 +0100 (Tue, 30 Jan 2007) | 8 lines
No more raising of string exceptions!
The next step of PEP 352 (for 2.6) causes raising a string exception to trigger
a TypeError. Trying to catch a string exception raises a DeprecationWarning.
References to string exceptions has been removed from the docs since they are
now just an error.
........
r53618 | raymond.hettinger | 2007-02-01 22:02:59 +0100 (Thu, 01 Feb 2007) | 1 line
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses.
........
2007-02-04 21:24:16 -04:00
|
|
|
def test_catch_string(self):
|
2007-02-26 17:10:16 -04:00
|
|
|
# Catching a string is bad.
|
|
|
|
self.catch_fails("spam")
|
2006-03-01 00:25:17 -04:00
|
|
|
|
|
|
|
def test_main():
|
|
|
|
run_unittest(ExceptionClassTests, UsageTests)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|