summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_float.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2025-06-27 10:26:51 (GMT)
committerGitHub <noreply@github.com>2025-06-27 10:26:51 (GMT)
commit33c83cea070b70416c4a40a79130866ff7df679f (patch)
treef2a0dcdc1c1305745d14312455eb5fe4b8852662 /Lib/test/test_float.py
parenta168c775366d09b37492854f1a376f7b250fcf40 (diff)
downloadcpython-33c83cea070b70416c4a40a79130866ff7df679f.zip
cpython-33c83cea070b70416c4a40a79130866ff7df679f.tar.gz
cpython-33c83cea070b70416c4a40a79130866ff7df679f.tar.bz2
[3.14] gh-128051: Fix tests if sys.float_repr_style is 'legacy' (GH-135908) (#136025)
gh-128051: Fix tests if sys.float_repr_style is 'legacy' (GH-135908) (cherry picked from commit f3aec60d7a01c5f085a3ef2d6670d46b42b8ddd3) Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Lib/test/test_float.py')
-rw-r--r--Lib/test/test_float.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py
index 237d7b5..00518ab 100644
--- a/Lib/test/test_float.py
+++ b/Lib/test/test_float.py
@@ -795,6 +795,8 @@ class FormatTestCase(unittest.TestCase):
self.assertRaises(ValueError, format, x, '.6,n')
@support.requires_IEEE_754
+ @unittest.skipUnless(sys.float_repr_style == 'short',
+ "applies only when using short float repr style")
def test_format_testfile(self):
with open(format_testfile, encoding="utf-8") as testfile:
for line in testfile: