From 8d42a2899ab708239300d95edfdda2cc237b39fa Mon Sep 17 00:00:00 2001 From: David Euresti Date: Mon, 20 Feb 2017 11:38:49 -0800 Subject: [PATCH] Add configparser and builtins to six (#937) * Add configparser and builtins to six * Use 'as' import --- third_party/2/six/moves/__init__.pyi | 2 ++ third_party/3/six/moves/__init__.pyi | 2 ++ 2 files changed, 4 insertions(+) diff --git a/third_party/2/six/moves/__init__.pyi b/third_party/2/six/moves/__init__.pyi index 2e09f9892..a59fe7f4e 100644 --- a/third_party/2/six/moves/__init__.pyi +++ b/third_party/2/six/moves/__init__.pyi @@ -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 diff --git a/third_party/3/six/moves/__init__.pyi b/third_party/3/six/moves/__init__.pyi index 859a7ebc1..adce50116 100644 --- a/third_party/3/six/moves/__init__.pyi +++ b/third_party/3/six/moves/__init__.pyi @@ -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