File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 3737 - You may want to consider installing automatic PEP8 checking in
3838 your editor.
3939
40- * No tabs (only space ). No trailing whitespace.
40+ * No tabs (only spaces ). No trailing whitespace.
4141
4242 - Configuring your editor to remove these things upon saving will
4343 save a lot of trouble.
@@ -49,11 +49,16 @@ Style
4949 import matplotlib as mpl
5050 from matplotlib import pyplot as plt
5151 import matplotlib.cbook as cbook
52+ import matplotlib.collections as mcol
53+ import matplotlib.patches as mpatches
5254
5355* See below for additional points about
5456 :ref: `keyword-argument-processing `, if code in your pull request
5557 does that.
5658
59+ * Adding a new pyplot function involves generating code. See
60+ :ref: `new-pyplot-function ` for more information.
61+
5762Documentation
5863-------------
5964
@@ -236,6 +241,8 @@ example code you can load it into a file handle with::
236241 import matplotlib.cbook as cbook
237242 fh = cbook.get_sample_data('mydata.dat')
238243
244+ .. _new-pyplot-function :
245+
239246Writing a new pyplot function
240247-----------------------------
241248
You can’t perform that action at this time.
0 commit comments