commit | 267d41737711a3277869c61bde77009b5fea6315 | [log] [tgz] |
---|---|---|
author | Alexandre Vassalotti <alexandre@peadrop.com> | Wed Jun 04 20:26:54 2008 +0000 |
committer | Alexandre Vassalotti <alexandre@peadrop.com> | Wed Jun 04 20:26:54 2008 +0000 |
tree | cf4e5e751e6c11c8c55d34fe7da8d7daac445526 | |
parent | 00709aaa3dc7da374e94a3ede8e05603e8a95066 [diff] |
Fixed isinstance() check in dis.dis().
diff --git a/Lib/dis.py b/Lib/dis.py index 6d52694..c98f0c0 100644 --- a/Lib/dis.py +++ b/Lib/dis.py
@@ -35,7 +35,7 @@ print() elif hasattr(x, 'co_code'): disassemble(x) - elif isinstance(x, str): + elif isinstance(x, (bytes, bytearray)): disassemble_string(x) else: raise TypeError("don't know how to disassemble %s objects" %