matplotlib.docstring#

주목

이 모듈은 내부 모듈로 간주됩니다.

더 이상 사용되지 않으며 향후 버전에서 제거됩니다.

클래스 matplotlib._docstring. 대체 ( * args , ** kwargs ) [출처] #

베이스:object

개체의 docstring에서 %-대체를 수행하는 데코레이터입니다.

이 데코레이터는 None인 경우에도 견고해야 합니다 obj.__doc__(예: -OO가 인터프리터에 전달된 경우).

사용법: 대체 수행에 적합한 시퀀스 또는 사전으로 docstring.Substitution을 구성합니다. 그런 다음 생성된 개체로 적절한 함수를 장식합니다. 예를 들면 다음과 같습니다.

sub_author_name = Substitution(author='Jason')

@sub_author_name
def some_function(x):
    "%(author)s wrote this function"

# note that some_function.__doc__ is now "Jason wrote this function"

위치 인수를 사용할 수도 있습니다.

sub_first_last_names = Substitution('Edgar Allen', 'Poe')

@sub_first_last_names
def some_function(x):
    "%s %s wrote the Raven"
업데이트 ( * 인수 , ** kwargs ) [출처] #

self.params제공된 인수로 업데이트 (사전이어야 함).

matplotlib._docstring. 복사 ( 소스 ) [ 소스 ] #

다른 소스 함수(있는 경우)에서 docstring을 복사합니다.