From 82d2e020b2c88dbb06cd046f3ebfc3b766fee321 Mon Sep 17 00:00:00 2001 From: Muhammad Abdullah <69182153+abdulasiraj@users.noreply.github.com> Date: Sat, 29 Apr 2023 16:09:00 -0600 Subject: [PATCH] Proposing minor fix --- .../src/hypothesis/strategies/_internal/numbers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypothesis-python/src/hypothesis/strategies/_internal/numbers.py b/hypothesis-python/src/hypothesis/strategies/_internal/numbers.py index bd506e9d15..825e91de2e 100644 --- a/hypothesis-python/src/hypothesis/strategies/_internal/numbers.py +++ b/hypothesis-python/src/hypothesis/strategies/_internal/numbers.py @@ -438,7 +438,7 @@ def floats( if math.copysign(1.0, -0.0) == 1.0: # pragma: no cover raise FloatingPointError( - "You Python install can't represent -0.0, which is required by the " + "Your Python install can't represent -0.0, which is required by the " "IEEE-754 floating-point specification. This is probably because it was " "compiled with an unsafe option like -ffast-math; for a more detailed " "explanation see https://simonbyrne.github.io/notes/fastmath/"