Files
RustPython/Lib/atexit.py
2019-11-17 17:09:38 -06:00

10 lines
121 B
Python
Vendored

# Dummy implementation of atexit
def register(func, *args, **kwargs):
return func
def unregister(func):
pass