8000 DOC: Fix mismatched variable names in docstrings. by dongjoon-hyun · Pull Request #7299 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: Fix mismatched variable names in docstrings. #7299

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 1 commit into from
Feb 21, 2016
Merged
Changes from all commits
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
DOC: Fix mismatched variable names in docstrings.
  • Loading branch information
dongjoon-hyun committed Feb 21, 2016
commit 063f298279faeb2ccb4c61d81869e1f66ca1b1f1
12 changes: 6 additions & 6 deletions numpy/core/tests/test_deprecations.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ def assert_deprecated(self, function, num=1, ignore_others=False,

Parameters
----------
f : callable
function : callable
The function to test
num : int
Number of VisibleDeprecationWarnings to expect. This should
normally be 1.
ignore_other : bool
ignore_others : bool
Whether warnings of the wrong type should be ignored (note that
the message is not checked)
function_fails : bool
Expand All @@ -74,9 +74,9 @@ def assert_deprecated(self, function, num=1, ignore_others=False,
The default checks for DeprecationWarnings. If exceptions is
empty the function is expected to run successfull.
args : tuple
Arguments for `f`
Arguments for `function`
kwargs : dict
Keyword arguments for `f`
Keyword arguments for `function`
"""
# reset the log
self.log[:] = []
Expand Down Expand Up @@ -175,9 +175,9 @@ def assert_deprecated(self, function, num=1, ignore_others=False,
The default checks for DeprecationWarnings. If exceptions is
empty the function is expected to run successfull.
args : tuple
Arguments for `f`
Arguments for `function`
kwargs : dict
Keyword arguments for `f`
Keyword arguments for `function`
"""
# reset the log
self.log[:] = []
Expand Down
0