Home
last modified time | relevance | path

Searched refs:recursive_repr (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_reprlib.py16 from reprlib import recursive_repr
368 @recursive_repr()
373 @recursive_repr('+++')
382 wrapper = recursive_repr()(wrapped)
/external/python/cpython3/Doc/library/
Dreprlib.rst48 .. decorator:: recursive_repr(fillvalue="...")
54 >>> from reprlib import recursive_repr
56 ... @recursive_repr()
/external/python/cpython3/Lib/
Dreprlib.py9 def recursive_repr(fillvalue='...'): function
Dfunctools.py23 from reprlib import recursive_repr
274 @recursive_repr()
/external/python/cpython3/Lib/collections/
D__init__.py27 from reprlib import recursive_repr as _recursive_repr
/external/python/cpython3/Misc/NEWS.d/
D3.5.2rc1.rst703 recursive_repr() now sets __qualname__ of wrapper. Patch by Xiang Zhang.
D3.6.0a1.rst1125 recursive_repr() now sets __qualname__ of wrapper. Patch by Xiang Zhang.
/external/python/cpython3/Doc/c-api/
Dexceptions.rst726 these are the C equivalent to :func:`reprlib.recursive_repr`.
/external/python/cpython3/Doc/whatsnew/
D3.2.rst1151 decorator, :func:`~reprlib.recursive_repr`, for detecting recursive calls to
1155 ... @recursive_repr()