File tree 1 file changed +8
-1
lines changed 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 37
37
- You may want to consider installing automatic PEP8 checking in
38
38
your editor.
39
39
40
- * No tabs (only space ). No trailing whitespace.
40
+ * No tabs (only spaces ). No trailing whitespace.
41
41
42
42
- Configuring your editor to remove these things upon saving will
43
43
save a lot of trouble.
@@ -49,11 +49,16 @@ Style
49
49
import matplotlib as mpl
50
50
from matplotlib import pyplot as plt
51
51
import matplotlib.cbook as cbook
52
+ import matplotlib.collections as mcol
53
+ import matplotlib.patches as mpatches
52
54
53
55
* See below for additional points about
54
56
:ref: `keyword-argument-processing `, if code in your pull request
55
57
does that.
56
58
59
+ * Adding a new pyplot function involves generating code. See
60
+ :ref: `new-pyplot-function ` for more information.
61
+
57
62
Documentation
58
63
-------------
59
64
@@ -236,6 +241,8 @@ example code you can load it into a file handle with::
236
241
import matplotlib.cbook as cbook
237
242
fh = cbook.get_sample_data('mydata.dat')
238
243
244
+ .. _new-pyplot-function :
245
+
239
246
Writing a new pyplot function
240
247
-----------------------------
241
248
You can’t perform that action at this time.
0 commit comments