Add future imports

This commit is contained in:
Labrys of Knossos 2019-04-07 17:44:25 -04:00
commit 424879e4b6
70 changed files with 483 additions and 9 deletions

View file

@ -1,6 +1,13 @@
# coding=utf-8
# code copied from http://www.doughellmann.com/PyMOTW/urllib2/
from __future__ import (
absolute_import,
division,
print_function,
unicode_literals,
)
import itertools
import mimetypes
from email.generator import _make_boundary as choose_boundary