Add configparser and builtins to six (#937)

* Add configparser and builtins to six

* Use 'as' import
This commit is contained in:
David Euresti
2017-02-20 11:38:49 -08:00
committed by Łukasz Langa
parent dbea48fc7a
commit 8d42a2899a
2 changed files with 4 additions and 0 deletions

View File

@@ -24,6 +24,8 @@ import six.moves.cPickle as cPickle
import HTMLParser as html_parser
import htmlentitydefs as html_entities
import httplib as http_client
import ConfigParser as configparser
import __builtin__ as builtins
import six.moves.urllib_parse as urllib_parse
import six.moves.urllib_error as urllib_error

View File

@@ -27,6 +27,8 @@ import six.moves.cPickle as cPickle
import html.parser as html_parser
import html.entities as html_entities
import http.client as http_client
import configparser as configparser
import builtins as builtins
import six.moves.urllib_parse as urllib_parse
import six.moves.urllib_error as urllib_error