aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/libregrtest/runtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/libregrtest/runtests.py')
-rw-r--r--Lib/test/libregrtest/runtests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/libregrtest/runtests.py b/Lib/test/libregrtest/runtests.py
index e843cc2dadf..64f8f6ab0ff 100644
--- a/Lib/test/libregrtest/runtests.py
+++ b/Lib/test/libregrtest/runtests.py
@@ -36,6 +36,9 @@ class RunTests:
gc_threshold: int | None = None
use_resources: list[str] = dataclasses.field(default_factory=list)
python_cmd: list[str] | None = None
+ # On Unix, it's a file descriptor.
+ # On Windows, it's a handle.
+ json_fd: int | None = None
def copy(self, **override):
state = dataclasses.asdict(self)