(func, inp, Tout, stateful=True, name=None)
| 510 | """) |
| 511 | @tf_export(v1=["py_func"]) |
| 512 | def py_func(func, inp, Tout, stateful=True, name=None): |
| 513 | return py_func_common(func, inp, Tout, stateful, name=name) |
| 514 | |
| 515 | |
| 516 | py_func.__doc__ = "%s" % py_func_common.__doc__ |
nothing calls this directly
no test coverage detected