Skip to content

Commit cd71bbc

Browse files
committed
Merge branch 'master' of github.com:matplotlib/matplotlib
* 'master' of github.com:matplotlib/matplotlib: removing items from the call to six.iteritems fix removed api change regarding spectral functions - pep8 - removed mutable default values - foo == None -> foo is None pep8
2 parents f5d995b + 4cd888e commit cd71bbc

File tree

4 files changed

+109
-157
lines changed

4 files changed

+109
-157
lines changed

doc/api/api_changes.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,6 @@ original location:
7676
- `xycoords` -> set the units of the point location
7777
- `set_position()` -> `Annotation` only set location of annotation
7878

79-
* NFFT being even is now enforced in `matplotlib.mlab.specgram`,
80-
`matplotlib.mlab.psd`, `matplotlib.mlab.csd`,
81-
`matplotlib.mlab.cohere`, `matplotlib.mlab.cohere_pairs`,
82-
`matplotlib.pyplot.specgram`, `matplotlib.pyplot.psd`,
83-
`matplotlib.pyplot.csd`, and `matplotlib.pyplot.cohere`. This was
84-
listed as a requirement but was not actually checked.
85-
8679
* `matplotlib.mlab.specgram`, `matplotlib.mlab.psd`, `matplotlib.mlab.csd`,
8780
`matplotlib.mlab.cohere`, `matplotlib.mlab.cohere_pairs`,
8881
`matplotlib.pyplot.specgram`, `matplotlib.pyplot.psd`,

lib/matplotlib/backends/backend_gtk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ def __init__ (self,
832832
hbox.pack_start (cbox)
833833

834834
self.filetypes = filetypes
835-
self.sorted_filetypes = list(six.iteritems(filetypes.items))
835+
self.sorted_filetypes = list(six.iteritems(filetypes))
836836
self.sorted_filetypes.sort()
837837
default = 0
838838
for i, (ext, name) in enumerate(self.sorted_filetypes):

0 commit comments

Comments
 (0)