diff options
author | Brett Cannon <brett@python.org> | 2012-06-03 02:28:42 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-06-03 02:28:42 (GMT) |
commit | 2b88fcf693f14d3044929a24a5a66f45107eda23 (patch) | |
tree | d9d8d59e1e599f48d3de5d2f63188624b05ad575 /Lib/inspect.py | |
parent | 361baaddcf11b3d51430491fba86a41c19d0d76f (diff) | |
download | cpython-2b88fcf693f14d3044929a24a5a66f45107eda23.zip cpython-2b88fcf693f14d3044929a24a5a66f45107eda23.tar.gz cpython-2b88fcf693f14d3044929a24a5a66f45107eda23.tar.bz2 |
Issue #14987: Add a missing import statement
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 56d05fb..c3338f24 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -38,6 +38,7 @@ import re import sys import tokenize import types +import warnings from operator import attrgetter from collections import namedtuple |