mirror of https://github.com/python/cpython
Issue #14987: Add a missing import statement
This commit is contained in:
parent
361baaddcf
commit
2b88fcf693
|
@ -38,6 +38,7 @@ import re
|
|||
import sys
|
||||
import tokenize
|
||||
import types
|
||||
import warnings
|
||||
from operator import attrgetter
|
||||
from collections import namedtuple
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue