8000 Make `axis.set_scale` private by tacaswell · Pull Request #1917 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Make axis.set_scale private #1917

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 13, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Spelling and import tweaks it axis.py.
  • Loading branch information
tacaswell committed Apr 24, 2013
commit d2eb877b6d20fdeb47774e7c2e3285dd91833430
6 changes: 3 additions & 3 deletions lib/matplotlib/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import numpy as np
import warnings

from matplotlib import MatplotlibDeprecationWarning as mplDeprecation
from cbook import mplDeprecation

GRIDLINE_INTERPOLATION_STEPS = 180

Expand Down Expand Up @@ -686,9 +686,9 @@ def get_scale(self):

def set_scale(self, value, **kwargs):
"""
Deprecatted 1.3.
Deprecated 1.3.

This sholud be a private function (moved to _set_scale)
This should be a private function (moved to _set_scale)
"""
warnings.warn("This function has been made private and moved"
"to `_set_scale`. This wrapper function will be "
Expand Down
0