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 1c9ae94 commit 4a40ba5Copy full SHA for 4a40ba5
2 files changed
CHANGELOG
@@ -1,4 +1,7 @@
1
-2009-11-16 Bugfix of C typedef of MPL_Int64 that was failing on
+2009-01-16 Fix bug in is_string_like so it doesn't raise an
2
+ unnecessary exception. - EF
3
+
4
+2009-01-16 Bugfix of C typedef of MPL_Int64 that was failing on
5
Windows XP 64 bit, as reported by George Goussard on numpy
6
mailing list. - ADS
7
lib/matplotlib/cbook.py
@@ -275,7 +275,7 @@ def is_string_like(obj):
275
else:
276
return False
277
try: obj + ''
278
- except (TypeError, ValueError): return False
+ except: return False
279
return True
280
281
def is_sequence_of_strings(obj):
0 commit comments