]> granicus.if.org Git - python/commitdiff
Issue #14987: Add a missing import statement
authorBrett Cannon <brett@python.org>
Sun, 3 Jun 2012 02:28:42 +0000 (22:28 -0400)
committerBrett Cannon <brett@python.org>
Sun, 3 Jun 2012 02:28:42 +0000 (22:28 -0400)
Lib/inspect.py
Misc/NEWS

index 56d05fb9d4f2bea8439ea090a452b1614268f66c..c3338f24fa7cea4fa08f1e233ddd003d6197ff33 100644 (file)
@@ -38,6 +38,7 @@ import re
 import sys
 import tokenize
 import types
+import warnings
 from operator import attrgetter
 from collections import namedtuple
 
index 3bdff8b8d108a5a5b350cfbe639a75399cb849c6..b74696981a1736c32b80e7d2a048dc4f70019401 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Beta 1?
 Library
 -------
 
+- Issue #14987: Add a missing import statement to inspect.
+
 - Issue #1079: email.header.decode_header now correctly parses all the examples
   in RFC2047.  There is a necessary visible behavior change: the leading and/or
   trailing whitespace on ASCII parts is now preserved.