Convert docstrings to comments so regrtest -v prints method names

This commit is contained in:
Neal Norwitz 2006-06-02 04:45:53 +00:00
parent d770ebd286
commit e152aab977
1 changed files with 7 additions and 7 deletions

View File

@ -112,8 +112,8 @@ class ExceptionTests(unittest.TestCase):
except Exception, e: pass except Exception, e: pass
def testSyntaxErrorMessage(self): def testSyntaxErrorMessage(self):
"""make sure the right exception message is raised for each of # make sure the right exception message is raised for each of
these code fragments""" # these code fragments
def ckmsg(src, msg): def ckmsg(src, msg):
try: try:
@ -143,8 +143,8 @@ class ExceptionTests(unittest.TestCase):
ckmsg("continue\n", "'continue' not properly in loop") ckmsg("continue\n", "'continue' not properly in loop")
def testSettingException(self): def testSettingException(self):
"""test that setting an exception at the C level works even if the # test that setting an exception at the C level works even if the
exception object can't be constructed.""" # exception object can't be constructed.
class BadException: class BadException:
def __init__(self_): def __init__(self_):
@ -181,7 +181,7 @@ class ExceptionTests(unittest.TestCase):
test_capi2() test_capi2()
def testAttributes(self): def testAttributes(self):
"""test that exception attributes are happy.""" # test that exception attributes are happy
try: str(u'Hello \u00E1') try: str(u'Hello \u00E1')
except Exception, e: sampleUnicodeEncodeError = e except Exception, e: sampleUnicodeEncodeError = e
@ -280,8 +280,8 @@ class ExceptionTests(unittest.TestCase):
(repr(e), checkArgName)) (repr(e), checkArgName))
def testKeywordArgs(self): def testKeywordArgs(self):
"""test that builtin exception don't take keyword args, # test that builtin exception don't take keyword args,
but user-defined subclasses can if they want""" # but user-defined subclasses can if they want
self.assertRaises(TypeError, BaseException, a=1) self.assertRaises(TypeError, BaseException, a=1)
class DerivedException(BaseException): class DerivedException(BaseException):