We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6089230 commit 051dbb5Copy full SHA for 051dbb5
django/utils/autoreload.py
@@ -230,7 +230,7 @@ def get_child_arguments():
230
exe_entrypoint = py_script.with_suffix(".exe")
231
232
args = [sys.executable] + ["-W%s" % o for o in sys.warnoptions]
233
- if sys.implementation.name == "cpython":
+ if sys.implementation.name in ("cpython", "pypy"):
234
args.extend(
235
f"-X{key}" if value is True else f"-X{key}={value}"
236
for key, value in sys._xoptions.items()
0 commit comments