Commit d8509852 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Tatuya Kamada

speed up email parsing is included in python 2.7.9.

parent 83254d17
...@@ -39,7 +39,7 @@ if sys.version_info < (2, 7): ...@@ -39,7 +39,7 @@ if sys.version_info < (2, 7):
collections.OrderedDict = OrderedDict collections.OrderedDict = OrderedDict
if 1: if sys.version_info[:3] < (2, 7, 9):
# Speed up email parsing (see also http://bugs.python.org/issue1243730) # Speed up email parsing (see also http://bugs.python.org/issue1243730)
from email import parser, feedparser from email import parser, feedparser
......
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