(func)
| 724 | |
| 725 | |
| 726 | def export(func): |
| 727 | global __all__ |
| 728 | try: |
| 729 | __all__.append(func.__name__) |
| 730 | except NameError: |
| 731 | __all__ = [func.__name__] |
| 732 | return func |
| 733 | |
| 734 | |
| 735 | @export |
nothing calls this directly
no outgoing calls
no test coverage detected