Metadata-Version: 2.1
Name: unrec
Version: 0.1.0
Summary: This is a tool to fix recursive calls to loop in a fully automatic manner.
Home-page: https://github.co.jp/
Author: TTLab
Author-email: t.tools.lab@gmail.com
License: CC0 v1.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Description-Content-Type: text/markdown
Requires-Dist: relpath

再帰呼び出しを全自動でloopに直すツールです。
関数呼び出しの深さが非常に深くなっても正常に実行できます。

This is a tool to fix recursive calls to loop in a fully automatic manner.
It can execute successfully even when the depth of the function call is very deep.

## How to use: 使用法
```python
# pip install unrec

import unrec

@unrec
def frac(n):
	if n == 0: return 1
	return n * frac(n-1)

print(frac(9999))	# -> NO ERROR!!
```

This description is under construction.


