Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9f38ce commit eb86ed1Copy full SHA for eb86ed1
lib/matplotlib/rcsetup.py
@@ -22,14 +22,16 @@
22
import operator
23
import os
24
import warnings
25
+import re
26
+
27
try:
28
import collections.abc as abc
29
except ImportError:
30
# python 2
31
import collections as abc
32
from matplotlib.fontconfig_pattern import parse_fontconfig_pattern
33
from matplotlib.colors import is_color_like
-import re
34
35
36
# Don't let the original cycler collide with our validating cycler
37
from cycler import Cycler, cycler as ccycler
lib/matplotlib/tests/test_rcparams.py
@@ -418,5 +418,6 @@ def test_rcparams_reset_after_fail():
418
419
assert mpl.rcParams['text.usetex'] is False
420
421
422
if __name__ == '__main__':
423
nose.runmodule(argv=['-s', '--with-doctest'], exit=False)
0 commit comments