Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions debugwand/attacher.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def main():

try:
# Use sys.remote_exec to inject the script into the target process
# New in Python 3.14, no stubs yet
# New in Python 3.14!
# https://docs.python.org/3/library/sys.html#sys.remote_exec
sys.remote_exec(args.pid, args.script) # type: ignore
sys.remote_exec(args.pid, args.script)

except AttributeError as e:
print(f"ERROR: sys.remote_exec not available: {e}")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ path = "debugwand/__init__.py"
[tool.pyright]
include = ["debugwand"]
typeCheckingMode = "strict"
pythonVersion = "3.13"
pythonVersion = "3.14"
reportMissingTypeStubs = false

[tool.ruff]
Expand Down