summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2014-12-28 20:45:26 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2014-12-28 20:45:26 +0200
commite51c0dcd66e4319739450348bca23f555c8c4b6a (patch)
tree88ebda26f6e9b91cfdadc41064ff8e265c56494d
parent1a2fbeeb705dfc5a73e0e03ad3ec951c1e28b561 (diff)
downloadastroid-e51c0dcd66e4319739450348bca23f555c8c4b6a.tar.gz
Add parse and error submodules to six.moves tips.
-rw-r--r--astroid/brain/pysix_moves.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/astroid/brain/pysix_moves.py b/astroid/brain/pysix_moves.py
index 17f0bdc..5648278 100644
--- a/astroid/brain/pysix_moves.py
+++ b/astroid/brain/pysix_moves.py
@@ -143,6 +143,8 @@ def six_moves_transform_py2():
urllib_error = UrllibError()
urllib = DummyModule()
urllib.request = UrllibRequest()
+ urllib.parse = UrllibParse()
+ urllib.error = UrllibError()
moves = Moves()