Skip to content

Commit

Permalink
add pritn for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Jan 5, 2025
1 parent e44f630 commit 1c810ee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pywin32_postinstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ def LoadSystemModule(lib_dir, modname):
filename = os.path.join(lib_dir, "pywin32_system32", filename)
loader = importlib.machinery.ExtensionFileLoader(modname, filename)
spec = importlib.machinery.ModuleSpec(name=modname, loader=loader, origin=filename)
print(filename, loader, spec)
mod = importlib.util.module_from_spec(spec)
loader.exec_module(mod)

Expand Down

0 comments on commit 1c810ee

Please sign in to comment.