0byt3m1n1
Path:
C:
/
Program Files
/
RStudio
/
resources
/
app
/
bin
/
quarto
/
share
/
jupyter
/
lang
/
python
/
[
Home
]
File: cleanup.py
# reset state %reset import sys import types import os import json # NOTE: the kernel_deps code is repeated in the setup.py file # (we can't easily share this code b/c of the way it is run). # If you edit this code also edit the same code in setup.py! kernel_deps = dict() for module in list(sys.modules.values()): # Some modules play games with sys.modules (e.g. email/__init__.py # in the standard library), and occasionally this can cause strange # failures in getattr. Just ignore anything that's not an ordinary # module. if not isinstance(module, types.ModuleType): continue path = getattr(module, "__file__", None) if not path: continue if path.endswith(".pyc") or path.endswith(".pyo"): path = path[:-1] if not os.path.exists(path): continue kernel_deps[path] = os.stat(path).st_mtime print(json.dumps(kernel_deps))