Skip to content

Instantly share code, notes, and snippets.

@jenshnielsen
Created November 19, 2014 13:55
Show Gist options
  • Save jenshnielsen/c5a6ea5f1484f2cddc67 to your computer and use it in GitHub Desktop.
Save jenshnielsen/c5a6ea5f1484f2cddc67 to your computer and use it in GitHub Desktop.
Matplotlib python3 doc warnings
/Users/jhn/src/python/matplotlib/doc/api/colors_api.rst:12: WARNING: error while formatting arguments for matplotlib.colors.no_norm: 'function' object has no attribute '__mro__'
/Users/jhn/src/python/matplotlib/doc/api/colors_api.rst:12: WARNING: error while formatting arguments for matplotlib.colors.normalize: 'function' object has no attribute '__mro__'
/Users/jhn/src/python/matplotlib/doc/examples/api/date_demo.rst:8: WARNING: Exception occurred in plotting date_demo
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/api/date_demo.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 29, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 393, in load
return format.read_array(fid)
File "/usr/local/lib/python3.4/site-packages/numpy/lib/format.py", line 602, in read_array
array = pickle.load(fp)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd4 in position 1: ordinal not in range(128)
/Users/jhn/src/python/matplotlib/doc/examples/lines_bars_and_markers/marker_reference.rst:8: WARNING: Exception occurred in plotting marker_reference
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/lines_bars_and_markers/marker_reference.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 35, in <module>
AttributeError: 'dict' object has no attribute 'iteritems'
/Users/jhn/src/python/matplotlib/doc/examples/pylab_examples/boxplot_demo2.rst:8: WARNING: Exception occurred in plotting boxplot_demo2
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/boxplot_demo2.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 71, in <module>
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/patches.py", line 858, in __init__
self.set_xy(xy)
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/patches.py", line 921, in set_xy
if len(xy) and (xy[0] != xy[-1]).any():
TypeError: len() of unsized object
/Users/jhn/src/python/matplotlib/doc/examples/pylab_examples/centered_ticklabels.rst:8: WARNING: Exception occurred in plotting centered_ticklabels
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/centered_ticklabels.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 23, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 393, in load
return format.read_array(fid)
File "/usr/local/lib/python3.4/site-packages/numpy/lib/format.py", line 602, in read_array
array = pickle.load(fp)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc0 in position 1: ordinal not in range(128)
/Users/jhn/src/python/matplotlib/doc/examples/pylab_examples/load_converter.rst:8: WARNING: Exception occurred in plotting load_converter
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/load_converter.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 14, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 856, in loadtxt
items = [conv(val) for (conv, val) in zip(converters, vals)]
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 856, in <listcomp>
items = [conv(val) for (conv, val) in zip(converters, vals)]
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/dates.py", line 261, in __call__
return date2num(datetime.datetime(*time.strptime(s, self.fmt)[:6]))
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/_strptime.py", line 494, in _strptime_time
tt = _strptime(data_string, format)[0]
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/_strptime.py", line 306, in _strptime
raise TypeError(msg.format(index, type(arg)))
TypeError: strptime() argument 0 must be str, not <class 'bytes'>
/Users/jhn/src/python/matplotlib/doc/examples/pylab_examples/logo.rst:8: WARNING: Exception occurred in plotting logo
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/logo.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 12, in <module>
NameError: name 'file' is not defined
/Users/jhn/src/python/matplotlib/doc/examples/pylab_examples/multiple_yaxis_with_spines.rst:8: WARNING: Exception occurred in plotting multiple_yaxis_with_spines
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/multiple_yaxis_with_spines.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 22, in <module>
File "<string>", line 7, in make_patch_spines_invisible
AttributeError: 'dict' object has no attribute 'itervalues'
/Users/jhn/src/python/matplotlib/doc/examples/pylab_examples/scatter_demo2.rst:8: WARNING: Exception occurred in plotting scatter_demo2
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/scatter_demo2.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 13, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 393, in load
return format.read_array(fid)
File "/usr/local/lib/python3.4/site-packages/numpy/lib/format.py", line 602, in read_array
array = pickle.load(fp)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd4 in position 1: ordinal not in range(128)
/Users/jhn/src/python/matplotlib/doc/examples/pylab_examples/usetex_fonteffects.rst:8: WARNING: Exception occurred in plotting usetex_fonteffects
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/usetex_fonteffects.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 23, in <module>
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/pyplot.py", line 577, in savefig
res = fig.savefig(*args, **kwargs)
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/figure.py", line 1480, in savefig
self.canvas.print_figure(*args, **kwargs)
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/backend_bases.py", line 2211, in print_figure
**kwargs)
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/backends/backend_pdf.py", line 2490, in print_pdf
file.close()
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/backends/backend_pdf.py", line 525, in close
self.writeFonts()
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/backends/backend_pdf.py", line 621, in writeFonts
self.dviFontInfo[filename])
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/backends/backend_pdf.py", line 686, in embedTeXFont
t1font = t1font.transform(fontinfo.effects)
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/type1font.py", line 336, in transform
value = value.encode('latin-1')
AttributeError: 'bytes' object has no attribute 'encode'
/Users/jhn/src/python/matplotlib/doc/examples/units/annotate_with_units.rst:8: WARNING: Exception occurred in plotting annotate_with_units
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/annotate_with_units.py:
Traceback (most recent call last):
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 126, in __new__
return object.__new__(subcls, value, unit)
TypeError: object.__new__(TaggedValue_of_float) is not safe, use float.__new__()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 6, in <module>
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 224, in __rmul__
return self*lhs
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 221, in __mul__
return TaggedValue(value, unit)
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 130, in __new__
return object.__new__(cls, value, unit)
TypeError: object() takes no parameters
/Users/jhn/src/python/matplotlib/doc/examples/units/artist_tests.rst:8: WARNING: Exception occurred in plotting artist_tests
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/artist_tests.py:
Traceback (most recent call last):
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 126, in __new__
return object.__new__(subcls, value, unit)
TypeError: object.__new__(TaggedValue_of_int) is not safe, use int.__new__()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 34, in <module>
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 224, in __rmul__
return self*lhs
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 221, in __mul__
return TaggedValue(value, unit)
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 130, in __new__
return object.__new__(cls, value, unit)
TypeError: object() takes no parameters
/Users/jhn/src/python/matplotlib/doc/examples/units/bar_demo2.rst:8: WARNING: Exception occurred in plotting bar_demo2
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/bar_demo2.py:
Traceback (most recent call last):
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 126, in __new__
return object.__new__(subcls, value, unit)
TypeError: object.__new__(TaggedValue_of_ndarray) is not safe, use numpy.ndarray.__new__()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 15, in <module>
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 221, in __mul__
return TaggedValue(value, unit)
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 130, in __new__
return object.__new__(cls, value, unit)
TypeError: object() takes no parameters
/Users/jhn/src/python/matplotlib/doc/examples/units/bar_unit_demo.rst:8: WARNING: Exception occurred in plotting bar_unit_demo
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/bar_unit_demo.py:
Traceback (most recent call last):
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 126, in __new__
return object.__new__(subcls, value, unit)
TypeError: object.__new__(TaggedValue_of_int) is not safe, use int.__new__()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 8, in <module>
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 224, in __rmul__
return self*lhs
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 221, in __mul__
return TaggedValue(value, unit)
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 130, in __new__
return object.__new__(cls, value, unit)
TypeError: object() takes no parameters
/Users/jhn/src/python/matplotlib/doc/examples/units/ellipse_with_units.rst:8: WARNING: Exception occurred in plotting ellipse_with_units
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/ellipse_with_units.py:
Traceback (most recent call last):
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 126, in __new__
return object.__new__(subcls, value, unit)
TypeError: object.__new__(TaggedValue_of_float) is not safe, use float.__new__()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 10, in <module>
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 224, in __rmul__
return self*lhs
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 221, in __mul__
return TaggedValue(value, unit)
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 130, in __new__
return object.__new__(cls, value, unit)
TypeError: object() takes no parameters
/Users/jhn/src/python/matplotlib/doc/examples/units/radian_demo.rst:8: WARNING: Exception occurred in plotting radian_demo
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/radian_demo.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 10, in <module>
File "<string>", line 10, in <listcomp>
TypeError: __array_wrap__() missing 1 required positional argument: 'context'
/Users/jhn/src/python/matplotlib/doc/examples/units/units_sample.rst:8: WARNING: Exception occurred in plotting units_sample
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/units_sample.py:
Traceback (most recent call last):
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 126, in __new__
return object.__new__(subcls, value, unit)
TypeError: object.__new__(TaggedValue_of_ndarray) is not safe, use numpy.ndarray.__new__()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 14, in <module>
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 221, in __mul__
return TaggedValue(value, unit)
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 130, in __new__
return object.__new__(cls, value, unit)
TypeError: object() takes no parameters
/Users/jhn/src/python/matplotlib/doc/examples/units/units_scatter.rst:8: WARNING: Exception occurred in plotting units_scatter
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/units/units_scatter.py:
Traceback (most recent call last):
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 126, in __new__
return object.__new__(subcls, value, unit)
TypeError: object.__new__(TaggedValue_of_MaskedArray) is not safe, use numpy.ndarray.__new__()
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 18, in <module>
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 221, in __mul__
return TaggedValue(value, unit)
File "/Users/jhn/src/python/matplotlib/doc/mpl_examples/units/basic_units.py", line 130, in __new__
return object.__new__(cls, value, unit)
TypeError: object() takes no parameters
/Users/jhn/src/python/matplotlib/doc/users/colormaps.rst:67: WARNING: Exception occurred in plotting lightness
from /Users/jhn/src/python/matplotlib/doc/users/plotting/colormaps/lightness.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 61, in <module>
NameError: name 'xrange' is not defined
/Users/jhn/src/python/matplotlib/doc/users/colormaps.rst:75: WARNING: Exception occurred in plotting Lfunction
from /Users/jhn/src/python/matplotlib/doc/users/plotting/colormaps/Lfunction.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 45
print i,k
^
SyntaxError: Missing parentheses in call to 'print'
/Users/jhn/src/python/matplotlib/doc/users/gridspec.rst:139: WARNING: Exception occurred in plotting demo_gridspec06
from /Users/jhn/src/python/matplotlib/doc/users/plotting/examples/demo_gridspec06.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 26, in <module>
NameError: name 'xrange' is not defined
/Users/jhn/src/python/matplotlib/doc/users/image_tutorial.rst:343: WARNING: Exception occurred in plotting image_tutorial-8
from /Users/jhn/src/python/matplotlib/doc/users/image_tutorial.rst:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 6, in <module>
File "/usr/local/lib/python3.4/site-packages/PIL/Image.py", line 1550, in resize
im = self.im.resize(size, resample)
TypeError: integer argument expected, got float
/Users/jhn/src/python/matplotlib/doc/users/image_tutorial.rst:364: WARNING: Exception occurred in plotting image_tutorial-9
from /Users/jhn/src/python/matplotlib/doc/users/image_tutorial.rst:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 6, in <module>
File "/usr/local/lib/python3.4/site-packages/PIL/Image.py", line 1550, in resize
im = self.im.resize(size, resample)
TypeError: integer argument expected, got float
/Users/jhn/src/python/matplotlib/doc/users/image_tutorial.rst:381: WARNING: Exception occurred in plotting image_tutorial-10
from /Users/jhn/src/python/matplotlib/doc/users/image_tutorial.rst:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 6, in <module>
File "/usr/local/lib/python3.4/site-packages/PIL/Image.py", line 1550, in resize
im = self.im.resize(size, resample)
TypeError: integer argument expected, got float
/Users/jhn/src/python/matplotlib/doc/users/recipes.rst:116: WARNING: Exception occurred in plotting recipes-2
from /Users/jhn/src/python/matplotlib/doc/users/recipes.rst:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 3, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 393, in load
return format.read_array(fid)
File "/usr/local/lib/python3.4/site-packages/numpy/lib/format.py", line 602, in read_array
array = pickle.load(fp)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd4 in position 1: ordinal not in range(128)
/Users/jhn/src/python/matplotlib/doc/users/recipes.rst:138: WARNING: Exception occurred in plotting recipes-3
from /Users/jhn/src/python/matplotlib/doc/users/recipes.rst:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 3, in <module>
NameError: name 'r' is not defined
/Users/jhn/src/python/matplotlib/doc/users/recipes.rst:172: WARNING: Exception occurred in plotting recipes-4
from /Users/jhn/src/python/matplotlib/doc/users/recipes.rst:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 8, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 393, in load
return format.read_array(fid)
File "/usr/local/lib/python3.4/site-packages/numpy/lib/format.py", line 602, in read_array
array = pickle.load(fp)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd4 in position 1: ordinal not in range(128)
/Users/jhn/src/python/matplotlib/doc/users/screenshots.rst:147: WARNING: Exception occurred in plotting scatter_demo2
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/pylab_examples/scatter_demo2.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 13, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 393, in load
return format.read_array(fid)
File "/usr/local/lib/python3.4/site-packages/numpy/lib/format.py", line 602, in read_array
array = pickle.load(fp)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd4 in position 1: ordinal not in range(128)
/Users/jhn/src/python/matplotlib/doc/users/screenshots.rst:183: WARNING: Exception occurred in plotting date_demo
from /Users/jhn/src/python/matplotlib/doc/mpl_examples/api/date_demo.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 29, in <module>
File "/usr/local/lib/python3.4/site-packages/numpy/lib/npyio.py", line 393, in load
return format.read_array(fid)
File "/usr/local/lib/python3.4/site-packages/numpy/lib/format.py", line 602, in read_array
array = pickle.load(fp)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd4 in position 1: ordinal not in range(128)
/Users/jhn/src/python/matplotlib/doc/users/text_intro.rst:58: WARNING: Exception occurred in plotting text_commands
from /Users/jhn/src/python/matplotlib/doc/pyplots/text_commands.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 19, in <module>
NameError: name 'unicode' is not defined
/Users/jhn/src/python/matplotlib/doc/users/whats_new.rst:1443: WARNING: Exception occurred in plotting whats_new_99_spines
from /Users/jhn/src/python/matplotlib/doc/pyplots/whats_new_99_spines.py:
Traceback (most recent call last):
File "/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib-1.5.x-py3.4-macosx-10.10-x86_64.egg/matplotlib/sphinxext/plot_directive.py", line 506, in run_code
six.exec_(code, ns)
File "<string>", line 33, in <module>
File "<string>", line 7, in adjust_spines
AttributeError: 'dict' object has no attribute 'iteritems'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment