From: Guido van Rossum Date: Fri, 17 Jan 1997 20:08:18 +0000 (+0000) Subject: Of course, when the type of the argument to dis() is unsupported, it X-Git-Tag: v1.5a1~487 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00f86e6086444b94653d0fb01f2fa18e9a24f59a;p=thirdparty%2FPython%2Fcpython.git Of course, when the type of the argument to dis() is unsupported, it should raise TypeError, not ValueError... --- diff --git a/Lib/dis.py b/Lib/dis.py index 50e6c1dbb8d2..3957f9cf8bc8 100644 --- a/Lib/dis.py +++ b/Lib/dis.py @@ -14,7 +14,7 @@ def dis(x=None): if hasattr(x, 'co_code'): disassemble(x) else: - raise ValueError, \ + raise TypeError, \ "don't know how to disassemble %s objects" % \ type(x).__name__