Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 714d187

Browse files
committed
Move a few more imports of six to matplotlib.external.
1 parent 8fe495a commit 714d187

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

boilerplate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from __future__ import (absolute_import, division, print_function,
2020
unicode_literals)
2121

22-
import six
22+
from matplotlib.externals import six
2323

2424
import os
2525
import inspect

doc/users/plotting/examples/pgf_preamble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from __future__ import (absolute_import, division, print_function,
33
unicode_literals)
44

5-
import six
5+
from matplotlib.externals import six
66

77
import matplotlib as mpl
88
mpl.use("pgf")

lib/matplotlib/tests/test_type1font.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import (absolute_import, division, print_function,
22
unicode_literals)
33

4-
import six
4+
from matplotlib.externals import six
55

66
from nose.tools import assert_equal, assert_in
77
import matplotlib.type1font as t1f

0 commit comments

Comments
 (0)