Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4da13ad

Browse filesBrowse files
committed
Remove refresh function from polar ThetaLocator
The Locator `refresh` method was deprecated in 3.3 and removed in 3.5. But this subclass was apparently missed in the removal process. As such, this method will raise if called, thus I do not personally think it requires a separate deprecation period or even api note (though willing to do so if others disagree, of course)
1 parent 3067dad commit 4da13ad
Copy full SHA for 4da13ad

File tree

Expand file treeCollapse file tree

1 file changed

+0
-4
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+0
-4
lines changed

‎lib/matplotlib/projections/polar.py

Copy file name to clipboardExpand all lines: lib/matplotlib/projections/polar.py
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,10 +253,6 @@ def __call__(self):
253253
else:
254254
return np.deg2rad(self.base())
255255

256-
def refresh(self):
257-
# docstring inherited
258-
return self.base.refresh()
259-
260256
def view_limits(self, vmin, vmax):
261257
vmin, vmax = np.rad2deg((vmin, vmax))
262258
return np.deg2rad(self.base.view_limits(vmin, vmax))

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.