Fixed database typo and removed unnecessary class identifier.
This commit is contained in:
parent
00ad49a143
commit
45fb349a7d
5098 changed files with 952558 additions and 85 deletions
32
venv/Lib/site-packages/scipy/misc/__init__.py
Normal file
32
venv/Lib/site-packages/scipy/misc/__init__.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
"""
|
||||
==========================================
|
||||
Miscellaneous routines (:mod:`scipy.misc`)
|
||||
==========================================
|
||||
|
||||
.. currentmodule:: scipy.misc
|
||||
|
||||
Various utilities that don't have another home.
|
||||
|
||||
.. autosummary::
|
||||
:toctree: generated/
|
||||
|
||||
ascent - Get example image for processing
|
||||
central_diff_weights - Weights for an n-point central mth derivative
|
||||
derivative - Find the nth derivative of a function at a point
|
||||
face - Get example image for processing
|
||||
electrocardiogram - Load an example of a 1-D signal.
|
||||
|
||||
"""
|
||||
|
||||
from . import doccer
|
||||
from .common import *
|
||||
|
||||
__all__ = ['doccer']
|
||||
|
||||
from . import common
|
||||
__all__ += common.__all__
|
||||
del common
|
||||
|
||||
from scipy._lib._testutils import PytestTester
|
||||
test = PytestTester(__name__)
|
||||
del PytestTester
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
749
venv/Lib/site-packages/scipy/misc/ascent.dat
Normal file
749
venv/Lib/site-packages/scipy/misc/ascent.dat
Normal file
File diff suppressed because one or more lines are too long
328
venv/Lib/site-packages/scipy/misc/common.py
Normal file
328
venv/Lib/site-packages/scipy/misc/common.py
Normal file
|
@ -0,0 +1,328 @@
|
|||
"""
|
||||
Functions which are common and require SciPy Base and Level 1 SciPy
|
||||
(special, linalg)
|
||||
"""
|
||||
|
||||
from numpy import arange, newaxis, hstack, prod, array, frombuffer, load
|
||||
|
||||
__all__ = ['central_diff_weights', 'derivative', 'ascent', 'face',
|
||||
'electrocardiogram']
|
||||
|
||||
|
||||
def central_diff_weights(Np, ndiv=1):
|
||||
"""
|
||||
Return weights for an Np-point central derivative.
|
||||
|
||||
Assumes equally-spaced function points.
|
||||
|
||||
If weights are in the vector w, then
|
||||
derivative is w[0] * f(x-ho*dx) + ... + w[-1] * f(x+h0*dx)
|
||||
|
||||
Parameters
|
||||
----------
|
||||
Np : int
|
||||
Number of points for the central derivative.
|
||||
ndiv : int, optional
|
||||
Number of divisions. Default is 1.
|
||||
|
||||
Returns
|
||||
-------
|
||||
w : ndarray
|
||||
Weights for an Np-point central derivative. Its size is `Np`.
|
||||
|
||||
Notes
|
||||
-----
|
||||
Can be inaccurate for a large number of points.
|
||||
|
||||
Examples
|
||||
--------
|
||||
We can calculate a derivative value of a function.
|
||||
|
||||
>>> from scipy.misc import central_diff_weights
|
||||
>>> def f(x):
|
||||
... return 2 * x**2 + 3
|
||||
>>> x = 3.0 # derivative point
|
||||
>>> h = 0.1 # differential step
|
||||
>>> Np = 3 # point number for central derivative
|
||||
>>> weights = central_diff_weights(Np) # weights for first derivative
|
||||
>>> vals = [f(x + (i - Np/2) * h) for i in range(Np)]
|
||||
>>> sum(w * v for (w, v) in zip(weights, vals))/h
|
||||
11.79999999999998
|
||||
|
||||
This value is close to the analytical solution:
|
||||
f'(x) = 4x, so f'(3) = 12
|
||||
|
||||
References
|
||||
----------
|
||||
.. [1] https://en.wikipedia.org/wiki/Finite_difference
|
||||
|
||||
"""
|
||||
if Np < ndiv + 1:
|
||||
raise ValueError("Number of points must be at least the derivative order + 1.")
|
||||
if Np % 2 == 0:
|
||||
raise ValueError("The number of points must be odd.")
|
||||
from scipy import linalg
|
||||
ho = Np >> 1
|
||||
x = arange(-ho,ho+1.0)
|
||||
x = x[:,newaxis]
|
||||
X = x**0.0
|
||||
for k in range(1,Np):
|
||||
X = hstack([X,x**k])
|
||||
w = prod(arange(1,ndiv+1),axis=0)*linalg.inv(X)[ndiv]
|
||||
return w
|
||||
|
||||
|
||||
def derivative(func, x0, dx=1.0, n=1, args=(), order=3):
|
||||
"""
|
||||
Find the nth derivative of a function at a point.
|
||||
|
||||
Given a function, use a central difference formula with spacing `dx` to
|
||||
compute the nth derivative at `x0`.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
func : function
|
||||
Input function.
|
||||
x0 : float
|
||||
The point at which the nth derivative is found.
|
||||
dx : float, optional
|
||||
Spacing.
|
||||
n : int, optional
|
||||
Order of the derivative. Default is 1.
|
||||
args : tuple, optional
|
||||
Arguments
|
||||
order : int, optional
|
||||
Number of points to use, must be odd.
|
||||
|
||||
Notes
|
||||
-----
|
||||
Decreasing the step size too small can result in round-off error.
|
||||
|
||||
Examples
|
||||
--------
|
||||
>>> from scipy.misc import derivative
|
||||
>>> def f(x):
|
||||
... return x**3 + x**2
|
||||
>>> derivative(f, 1.0, dx=1e-6)
|
||||
4.9999999999217337
|
||||
|
||||
"""
|
||||
if order < n + 1:
|
||||
raise ValueError("'order' (the number of points used to compute the derivative), "
|
||||
"must be at least the derivative order 'n' + 1.")
|
||||
if order % 2 == 0:
|
||||
raise ValueError("'order' (the number of points used to compute the derivative) "
|
||||
"must be odd.")
|
||||
# pre-computed for n=1 and 2 and low-order for speed.
|
||||
if n == 1:
|
||||
if order == 3:
|
||||
weights = array([-1,0,1])/2.0
|
||||
elif order == 5:
|
||||
weights = array([1,-8,0,8,-1])/12.0
|
||||
elif order == 7:
|
||||
weights = array([-1,9,-45,0,45,-9,1])/60.0
|
||||
elif order == 9:
|
||||
weights = array([3,-32,168,-672,0,672,-168,32,-3])/840.0
|
||||
else:
|
||||
weights = central_diff_weights(order,1)
|
||||
elif n == 2:
|
||||
if order == 3:
|
||||
weights = array([1,-2.0,1])
|
||||
elif order == 5:
|
||||
weights = array([-1,16,-30,16,-1])/12.0
|
||||
elif order == 7:
|
||||
weights = array([2,-27,270,-490,270,-27,2])/180.0
|
||||
elif order == 9:
|
||||
weights = array([-9,128,-1008,8064,-14350,8064,-1008,128,-9])/5040.0
|
||||
else:
|
||||
weights = central_diff_weights(order,2)
|
||||
else:
|
||||
weights = central_diff_weights(order, n)
|
||||
val = 0.0
|
||||
ho = order >> 1
|
||||
for k in range(order):
|
||||
val += weights[k]*func(x0+(k-ho)*dx,*args)
|
||||
return val / prod((dx,)*n,axis=0)
|
||||
|
||||
|
||||
def ascent():
|
||||
"""
|
||||
Get an 8-bit grayscale bit-depth, 512 x 512 derived image for easy use in demos
|
||||
|
||||
The image is derived from accent-to-the-top.jpg at
|
||||
http://www.public-domain-image.com/people-public-domain-images-pictures/
|
||||
|
||||
Parameters
|
||||
----------
|
||||
None
|
||||
|
||||
Returns
|
||||
-------
|
||||
ascent : ndarray
|
||||
convenient image to use for testing and demonstration
|
||||
|
||||
Examples
|
||||
--------
|
||||
>>> import scipy.misc
|
||||
>>> ascent = scipy.misc.ascent()
|
||||
>>> ascent.shape
|
||||
(512, 512)
|
||||
>>> ascent.max()
|
||||
255
|
||||
|
||||
>>> import matplotlib.pyplot as plt
|
||||
>>> plt.gray()
|
||||
>>> plt.imshow(ascent)
|
||||
>>> plt.show()
|
||||
|
||||
"""
|
||||
import pickle
|
||||
import os
|
||||
fname = os.path.join(os.path.dirname(__file__),'ascent.dat')
|
||||
with open(fname, 'rb') as f:
|
||||
ascent = array(pickle.load(f))
|
||||
return ascent
|
||||
|
||||
|
||||
def face(gray=False):
|
||||
"""
|
||||
Get a 1024 x 768, color image of a raccoon face.
|
||||
|
||||
raccoon-procyon-lotor.jpg at http://www.public-domain-image.com
|
||||
|
||||
Parameters
|
||||
----------
|
||||
gray : bool, optional
|
||||
If True return 8-bit grey-scale image, otherwise return a color image
|
||||
|
||||
Returns
|
||||
-------
|
||||
face : ndarray
|
||||
image of a racoon face
|
||||
|
||||
Examples
|
||||
--------
|
||||
>>> import scipy.misc
|
||||
>>> face = scipy.misc.face()
|
||||
>>> face.shape
|
||||
(768, 1024, 3)
|
||||
>>> face.max()
|
||||
255
|
||||
>>> face.dtype
|
||||
dtype('uint8')
|
||||
|
||||
>>> import matplotlib.pyplot as plt
|
||||
>>> plt.gray()
|
||||
>>> plt.imshow(face)
|
||||
>>> plt.show()
|
||||
|
||||
"""
|
||||
import bz2
|
||||
import os
|
||||
with open(os.path.join(os.path.dirname(__file__), 'face.dat'), 'rb') as f:
|
||||
rawdata = f.read()
|
||||
data = bz2.decompress(rawdata)
|
||||
face = frombuffer(data, dtype='uint8')
|
||||
face.shape = (768, 1024, 3)
|
||||
if gray is True:
|
||||
face = (0.21 * face[:,:,0] + 0.71 * face[:,:,1] + 0.07 * face[:,:,2]).astype('uint8')
|
||||
return face
|
||||
|
||||
|
||||
def electrocardiogram():
|
||||
"""
|
||||
Load an electrocardiogram as an example for a 1-D signal.
|
||||
|
||||
The returned signal is a 5 minute long electrocardiogram (ECG), a medical
|
||||
recording of the heart's electrical activity, sampled at 360 Hz.
|
||||
|
||||
Returns
|
||||
-------
|
||||
ecg : ndarray
|
||||
The electrocardiogram in millivolt (mV) sampled at 360 Hz.
|
||||
|
||||
Notes
|
||||
-----
|
||||
The provided signal is an excerpt (19:35 to 24:35) from the `record 208`_
|
||||
(lead MLII) provided by the MIT-BIH Arrhythmia Database [1]_ on
|
||||
PhysioNet [2]_. The excerpt includes noise induced artifacts, typical
|
||||
heartbeats as well as pathological changes.
|
||||
|
||||
.. _record 208: https://physionet.org/physiobank/database/html/mitdbdir/records.htm#208
|
||||
|
||||
.. versionadded:: 1.1.0
|
||||
|
||||
References
|
||||
----------
|
||||
.. [1] Moody GB, Mark RG. The impact of the MIT-BIH Arrhythmia Database.
|
||||
IEEE Eng in Med and Biol 20(3):45-50 (May-June 2001).
|
||||
(PMID: 11446209); :doi:`10.13026/C2F305`
|
||||
.. [2] Goldberger AL, Amaral LAN, Glass L, Hausdorff JM, Ivanov PCh,
|
||||
Mark RG, Mietus JE, Moody GB, Peng C-K, Stanley HE. PhysioBank,
|
||||
PhysioToolkit, and PhysioNet: Components of a New Research Resource
|
||||
for Complex Physiologic Signals. Circulation 101(23):e215-e220;
|
||||
:doi:`10.1161/01.CIR.101.23.e215`
|
||||
|
||||
Examples
|
||||
--------
|
||||
>>> from scipy.misc import electrocardiogram
|
||||
>>> ecg = electrocardiogram()
|
||||
>>> ecg
|
||||
array([-0.245, -0.215, -0.185, ..., -0.405, -0.395, -0.385])
|
||||
>>> ecg.shape, ecg.mean(), ecg.std()
|
||||
((108000,), -0.16510875, 0.5992473991177294)
|
||||
|
||||
As stated the signal features several areas with a different morphology.
|
||||
E.g., the first few seconds show the electrical activity of a heart in
|
||||
normal sinus rhythm as seen below.
|
||||
|
||||
>>> import matplotlib.pyplot as plt
|
||||
>>> fs = 360
|
||||
>>> time = np.arange(ecg.size) / fs
|
||||
>>> plt.plot(time, ecg)
|
||||
>>> plt.xlabel("time in s")
|
||||
>>> plt.ylabel("ECG in mV")
|
||||
>>> plt.xlim(9, 10.2)
|
||||
>>> plt.ylim(-1, 1.5)
|
||||
>>> plt.show()
|
||||
|
||||
After second 16, however, the first premature ventricular contractions, also
|
||||
called extrasystoles, appear. These have a different morphology compared to
|
||||
typical heartbeats. The difference can easily be observed in the following
|
||||
plot.
|
||||
|
||||
>>> plt.plot(time, ecg)
|
||||
>>> plt.xlabel("time in s")
|
||||
>>> plt.ylabel("ECG in mV")
|
||||
>>> plt.xlim(46.5, 50)
|
||||
>>> plt.ylim(-2, 1.5)
|
||||
>>> plt.show()
|
||||
|
||||
At several points large artifacts disturb the recording, e.g.:
|
||||
|
||||
>>> plt.plot(time, ecg)
|
||||
>>> plt.xlabel("time in s")
|
||||
>>> plt.ylabel("ECG in mV")
|
||||
>>> plt.xlim(207, 215)
|
||||
>>> plt.ylim(-2, 3.5)
|
||||
>>> plt.show()
|
||||
|
||||
Finally, examining the power spectrum reveals that most of the biosignal is
|
||||
made up of lower frequencies. At 60 Hz the noise induced by the mains
|
||||
electricity can be clearly observed.
|
||||
|
||||
>>> from scipy.signal import welch
|
||||
>>> f, Pxx = welch(ecg, fs=fs, nperseg=2048, scaling="spectrum")
|
||||
>>> plt.semilogy(f, Pxx)
|
||||
>>> plt.xlabel("Frequency in Hz")
|
||||
>>> plt.ylabel("Power spectrum of the ECG in mV**2")
|
||||
>>> plt.xlim(f[[0, -1]])
|
||||
>>> plt.show()
|
||||
"""
|
||||
import os
|
||||
file_path = os.path.join(os.path.dirname(__file__), "ecg.dat")
|
||||
with load(file_path) as file:
|
||||
ecg = file["ecg"].astype(int) # np.uint16 -> int
|
||||
# Convert raw output of ADC to mV: (ecg - adc_zero) / adc_gain
|
||||
ecg = (ecg - 1024) / 200.0
|
||||
return ecg
|
51
venv/Lib/site-packages/scipy/misc/doccer.py
Normal file
51
venv/Lib/site-packages/scipy/misc/doccer.py
Normal file
|
@ -0,0 +1,51 @@
|
|||
''' Utilities to allow inserting docstring fragments for common
|
||||
parameters into function and method docstrings'''
|
||||
|
||||
import numpy as np
|
||||
from .._lib import doccer as _ld
|
||||
|
||||
__all__ = ['docformat', 'inherit_docstring_from', 'indentcount_lines',
|
||||
'filldoc', 'unindent_dict', 'unindent_string']
|
||||
|
||||
@np.deprecate(message="scipy.misc.docformat is deprecated in Scipy 1.3.0")
|
||||
def docformat(docstring, docdict=None):
|
||||
return _ld.docformat(docstring, docdict)
|
||||
|
||||
|
||||
@np.deprecate(message="scipy.misc.inherit_docstring_from is deprecated "
|
||||
"in SciPy 1.3.0")
|
||||
def inherit_docstring_from(cls):
|
||||
return _ld.inherit_docstring_from(cls)
|
||||
|
||||
|
||||
@np.deprecate(message="scipy.misc.extend_notes_in_docstring is deprecated "
|
||||
"in SciPy 1.3.0")
|
||||
def extend_notes_in_docstring(cls, notes):
|
||||
return _ld.extend_notes_in_docstring(cls, notes)
|
||||
|
||||
|
||||
@np.deprecate(message="scipy.misc.replace_notes_in_docstring is deprecated "
|
||||
"in SciPy 1.3.0")
|
||||
def replace_notes_in_docstring(cls, notes):
|
||||
return _ld.replace_notes_in_docstring(cls, notes)
|
||||
|
||||
|
||||
@np.deprecate(message="scipy.misc.indentcount_lines is deprecated "
|
||||
"in SciPy 1.3.0")
|
||||
def indentcount_lines(lines):
|
||||
return _ld.indentcount_lines(lines)
|
||||
|
||||
|
||||
@np.deprecate(message="scipy.misc.filldoc is deprecated in SciPy 1.3.0")
|
||||
def filldoc(docdict, unindent_params=True):
|
||||
return _ld.filldoc(docdict, unindent_params)
|
||||
|
||||
|
||||
@np.deprecate(message="scipy.misc.unindent_dict is deprecated in SciPy 1.3.0")
|
||||
def unindent_dict(docdict):
|
||||
return _ld.unindent_dict(docdict)
|
||||
|
||||
|
||||
@np.deprecate(message="scipy.misc.unindent_string is deprecated in SciPy 1.3.0")
|
||||
def unindent_string(docstring):
|
||||
return _ld.unindent_string(docstring)
|
BIN
venv/Lib/site-packages/scipy/misc/ecg.dat
Normal file
BIN
venv/Lib/site-packages/scipy/misc/ecg.dat
Normal file
Binary file not shown.
BIN
venv/Lib/site-packages/scipy/misc/face.dat
Normal file
BIN
venv/Lib/site-packages/scipy/misc/face.dat
Normal file
Binary file not shown.
12
venv/Lib/site-packages/scipy/misc/setup.py
Normal file
12
venv/Lib/site-packages/scipy/misc/setup.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
def configuration(parent_package='',top_path=None):
|
||||
from numpy.distutils.misc_util import Configuration
|
||||
config = Configuration('misc',parent_package,top_path)
|
||||
config.add_data_files('*.dat')
|
||||
config.add_data_dir('tests')
|
||||
return config
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from numpy.distutils.core import setup
|
||||
setup(**configuration(top_path='').todict())
|
0
venv/Lib/site-packages/scipy/misc/tests/__init__.py
Normal file
0
venv/Lib/site-packages/scipy/misc/tests/__init__.py
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
20
venv/Lib/site-packages/scipy/misc/tests/test_common.py
Normal file
20
venv/Lib/site-packages/scipy/misc/tests/test_common.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
from numpy.testing import assert_equal, assert_almost_equal
|
||||
|
||||
from scipy.misc import face, ascent, electrocardiogram
|
||||
|
||||
|
||||
def test_face():
|
||||
assert_equal(face().shape, (768, 1024, 3))
|
||||
|
||||
|
||||
def test_ascent():
|
||||
assert_equal(ascent().shape, (512, 512))
|
||||
|
||||
|
||||
def test_electrocardiogram():
|
||||
# Test shape, dtype and stats of signal
|
||||
ecg = electrocardiogram()
|
||||
assert ecg.dtype == float
|
||||
assert_equal(ecg.shape, (108000,))
|
||||
assert_almost_equal(ecg.mean(), -0.16510875)
|
||||
assert_almost_equal(ecg.std(), 0.5992473991177294)
|
134
venv/Lib/site-packages/scipy/misc/tests/test_doccer.py
Normal file
134
venv/Lib/site-packages/scipy/misc/tests/test_doccer.py
Normal file
|
@ -0,0 +1,134 @@
|
|||
''' Some tests for the documenting decorator and support functions '''
|
||||
|
||||
import sys
|
||||
import pytest
|
||||
from numpy.testing import assert_equal, suppress_warnings
|
||||
|
||||
from scipy.misc import doccer
|
||||
|
||||
# python -OO strips docstrings
|
||||
DOCSTRINGS_STRIPPED = sys.flags.optimize > 1
|
||||
|
||||
docstring = \
|
||||
"""Docstring
|
||||
%(strtest1)s
|
||||
%(strtest2)s
|
||||
%(strtest3)s
|
||||
"""
|
||||
param_doc1 = \
|
||||
"""Another test
|
||||
with some indent"""
|
||||
|
||||
param_doc2 = \
|
||||
"""Another test, one line"""
|
||||
|
||||
param_doc3 = \
|
||||
""" Another test
|
||||
with some indent"""
|
||||
|
||||
doc_dict = {'strtest1':param_doc1,
|
||||
'strtest2':param_doc2,
|
||||
'strtest3':param_doc3}
|
||||
|
||||
filled_docstring = \
|
||||
"""Docstring
|
||||
Another test
|
||||
with some indent
|
||||
Another test, one line
|
||||
Another test
|
||||
with some indent
|
||||
"""
|
||||
|
||||
|
||||
def test_unindent():
|
||||
with suppress_warnings() as sup:
|
||||
sup.filter(category=DeprecationWarning)
|
||||
assert_equal(doccer.unindent_string(param_doc1), param_doc1)
|
||||
assert_equal(doccer.unindent_string(param_doc2), param_doc2)
|
||||
assert_equal(doccer.unindent_string(param_doc3), param_doc1)
|
||||
|
||||
|
||||
def test_unindent_dict():
|
||||
with suppress_warnings() as sup:
|
||||
sup.filter(category=DeprecationWarning)
|
||||
d2 = doccer.unindent_dict(doc_dict)
|
||||
assert_equal(d2['strtest1'], doc_dict['strtest1'])
|
||||
assert_equal(d2['strtest2'], doc_dict['strtest2'])
|
||||
assert_equal(d2['strtest3'], doc_dict['strtest1'])
|
||||
|
||||
|
||||
def test_docformat():
|
||||
with suppress_warnings() as sup:
|
||||
sup.filter(category=DeprecationWarning)
|
||||
udd = doccer.unindent_dict(doc_dict)
|
||||
formatted = doccer.docformat(docstring, udd)
|
||||
assert_equal(formatted, filled_docstring)
|
||||
single_doc = 'Single line doc %(strtest1)s'
|
||||
formatted = doccer.docformat(single_doc, doc_dict)
|
||||
# Note - initial indent of format string does not
|
||||
# affect subsequent indent of inserted parameter
|
||||
assert_equal(formatted, """Single line doc Another test
|
||||
with some indent""")
|
||||
|
||||
|
||||
@pytest.mark.skipif(DOCSTRINGS_STRIPPED, reason="docstrings stripped")
|
||||
def test_decorator():
|
||||
with suppress_warnings() as sup:
|
||||
sup.filter(category=DeprecationWarning)
|
||||
# with unindentation of parameters
|
||||
decorator = doccer.filldoc(doc_dict, True)
|
||||
|
||||
@decorator
|
||||
def func():
|
||||
""" Docstring
|
||||
%(strtest3)s
|
||||
"""
|
||||
assert_equal(func.__doc__, """ Docstring
|
||||
Another test
|
||||
with some indent
|
||||
""")
|
||||
|
||||
# without unindentation of parameters
|
||||
decorator = doccer.filldoc(doc_dict, False)
|
||||
|
||||
@decorator
|
||||
def func():
|
||||
""" Docstring
|
||||
%(strtest3)s
|
||||
"""
|
||||
assert_equal(func.__doc__, """ Docstring
|
||||
Another test
|
||||
with some indent
|
||||
""")
|
||||
|
||||
|
||||
@pytest.mark.skipif(DOCSTRINGS_STRIPPED, reason="docstrings stripped")
|
||||
def test_inherit_docstring_from():
|
||||
|
||||
with suppress_warnings() as sup:
|
||||
sup.filter(category=DeprecationWarning)
|
||||
|
||||
class Foo(object):
|
||||
def func(self):
|
||||
'''Do something useful.'''
|
||||
return
|
||||
|
||||
def func2(self):
|
||||
'''Something else.'''
|
||||
|
||||
class Bar(Foo):
|
||||
@doccer.inherit_docstring_from(Foo)
|
||||
def func(self):
|
||||
'''%(super)sABC'''
|
||||
return
|
||||
|
||||
@doccer.inherit_docstring_from(Foo)
|
||||
def func2(self):
|
||||
# No docstring.
|
||||
return
|
||||
|
||||
assert_equal(Bar.func.__doc__, Foo.func.__doc__ + 'ABC')
|
||||
assert_equal(Bar.func2.__doc__, Foo.func2.__doc__)
|
||||
bar = Bar()
|
||||
assert_equal(bar.func.__doc__, Foo.func.__doc__ + 'ABC')
|
||||
assert_equal(bar.func2.__doc__, Foo.func2.__doc__)
|
Loading…
Add table
Add a link
Reference in a new issue