MCPcopy Create free account
hub / github.com/Jack-Cherish/python-spider / export

Function export

bilibili/xml2ass.py:726–732  ·  view source on GitHub ↗
(func)

Source from the content-addressed store, hash-verified

724
725
726def 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected