diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-08-08 23:12:33 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-08-08 23:12:33 (GMT) |
commit | ed70a344b5fbddea85726ebc1964ee0cfdef9c40 (patch) | |
tree | 45a7869fd3fc922b524ff93313babbfd12ff1762 /Lib | |
parent | aa542c2cf26c5af9298dda6064576b18906cdfbf (diff) | |
download | cpython-ed70a344b5fbddea85726ebc1964ee0cfdef9c40.zip cpython-ed70a344b5fbddea85726ebc1964ee0cfdef9c40.tar.gz cpython-ed70a344b5fbddea85726ebc1964ee0cfdef9c40.tar.bz2 |
bpo-36511: Fix failures in Windows ARM32 buildbot (GH-15181)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/libregrtest/win_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/libregrtest/win_utils.py b/Lib/test/libregrtest/win_utils.py index 0e6bfa8..ec2d6c6 100644 --- a/Lib/test/libregrtest/win_utils.py +++ b/Lib/test/libregrtest/win_utils.py @@ -25,6 +25,7 @@ class WindowsLoadTracker(): def __init__(self): self.load = 0.0 + self.p = None self.start() def start(self): |