Don't from-import functions/classes

This commit is contained in:
Daniel 2015-09-24 12:52:10 +02:00
parent 83aee4fad5
commit a3cc71e317

View File

@ -24,20 +24,20 @@ import io
import os import os
import re import re
from collections import namedtuple import collections
from base64 import b64encode import base64
from uuid import uuid4 import uuid
from email import policy from email import policy, generator
from email.mime.multipart import MIMEMultipart from email.mime import multipart
from email.generator import BytesGenerator
from PyQt5.QtCore import QUrl from PyQt5.QtCore import QUrl
from qutebrowser.utils import log, objreg, message from qutebrowser.utils import log, objreg, message
_File = namedtuple("_File", _File = collections.namedtuple("_File",
"content content_type content_location transfer_encoding") ["content", "content_type", "content_location",
"transfer_encoding"])
_CSS_URL_PATTERNS = [re.compile(x) for x in [ _CSS_URL_PATTERNS = [re.compile(x) for x in [
@ -78,7 +78,7 @@ def _chunked_base64(data, maxlen=76, linesep=b"\r\n"):
maxlen: Maximum length of a line, not including the line separator. maxlen: Maximum length of a line, not including the line separator.
linesep: Line separator to use as bytes. linesep: Line separator to use as bytes.
""" """
encoded = b64encode(data) encoded = base64.b64encode(data)
result = [] result = []
for i in range(0, len(encoded), maxlen): for i in range(0, len(encoded), maxlen):
result.append(encoded[i:i + maxlen]) result.append(encoded[i:i + maxlen])
@ -136,7 +136,7 @@ class MHTMLWriter(object):
_files: Mapping of location->_File struct. _files: Mapping of location->_File struct.
""" """
BOUNDARY = "---=_qute-" + str(uuid4()) BOUNDARY = "---=_qute-" + str(uuid.uuid4())
def __init__(self, root_content=None, content_location=None, def __init__(self, root_content=None, content_location=None,
content_type=None): content_type=None):
@ -175,7 +175,7 @@ class MHTMLWriter(object):
Args: Args:
fp: The file-object, openend in "wb" mode. fp: The file-object, openend in "wb" mode.
""" """
msg = MIMEMultipart("related", self.BOUNDARY) msg = multipart.MIMEMultipart("related", self.BOUNDARY)
root = self._create_root_file() root = self._create_root_file()
msg.attach(root) msg.attach(root)
@ -183,7 +183,7 @@ class MHTMLWriter(object):
for file_data in self._files.values(): for file_data in self._files.values():
msg.attach(self._create_file(file_data)) msg.attach(self._create_file(file_data))
gen = BytesGenerator(fp, policy=MHTMLPolicy) gen = generator.BytesGenerator(fp, policy=MHTMLPolicy)
gen.flatten(msg) gen.flatten(msg)
def _create_root_file(self): def _create_root_file(self):
@ -196,7 +196,7 @@ class MHTMLWriter(object):
def _create_file(self, f): def _create_file(self, f):
"""Return the single given file as MIMEMultipart.""" """Return the single given file as MIMEMultipart."""
msg = MIMEMultipart() msg = multipart.MIMEMultipart()
msg["Content-Location"] = f.content_location msg["Content-Location"] = f.content_location
# Get rid of the default type multipart/mixed # Get rid of the default type multipart/mixed
del msg["Content-Type"] del msg["Content-Type"]