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 eae31b1 commit 8d88c7dCopy full SHA for 8d88c7d
lib/matplotlib/__init__.py
@@ -133,7 +133,7 @@ def compare_versions(a, b):
133
f = pyparsing.Forward()
134
f <<= pyparsing.Literal('a')
135
bad_pyparsing = f is None
136
- except:
+ except TypeError:
137
bad_pyparsing = True
138
139
# pyparsing 1.5.6 does not have <<= on the Forward class, but
setupext.py
@@ -998,7 +998,7 @@ def is_ok(self):
998
999
1000
return f is not None
1001
1002
return False
1003
1004
def check(self):
0 commit comments