Metadata-Version: 2.1
Name: recursion-detect
Version: 2020.12.3
Summary: detect recursion
Home-page: https://github.com/andrewp-as-is/recursion-detect.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/recursion-detect.svg?maxAge=3600)](https://pypi.org/project/recursion-detect/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install recursion-detect
        ```
        
        #### Examples
        ```python
        >>> import recursion_detect
        >>> def recur():
            depth = recursion_detect.depth()
            print("depth = %s" % depth)
            if depth==5:
                return
            recur()
        
        >>> recur()
        0
        1
        2
        3
        4
        ```
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
