Commit 2b88fcf6 authored by Brett Cannon's avatar Brett Cannon

Issue #14987: Add a missing import statement

parent 361baadd
...@@ -38,6 +38,7 @@ import re ...@@ -38,6 +38,7 @@ import re
import sys import sys
import tokenize import tokenize
import types import types
import warnings
from operator import attrgetter from operator import attrgetter
from collections import namedtuple from collections import namedtuple
......
...@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Beta 1? ...@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Beta 1?
Library Library
------- -------
- Issue #14987: Add a missing import statement to inspect.
- Issue #1079: email.header.decode_header now correctly parses all the examples - 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 in RFC2047. There is a necessary visible behavior change: the leading and/or
trailing whitespace on ASCII parts is now preserved. trailing whitespace on ASCII parts is now preserved.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment