mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
[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 f3aec60d7a
)
Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
This commit is contained in:
parent
a168c77536
commit
33c83cea07
16 changed files with 50 additions and 44 deletions
|
@ -397,20 +397,20 @@ class ReprTests(unittest.TestCase):
|
|||
'object': {
|
||||
1: 'two',
|
||||
b'three': [
|
||||
(4.5, 6.7),
|
||||
(4.5, 6.25),
|
||||
[set((8, 9)), frozenset((10, 11))],
|
||||
],
|
||||
},
|
||||
'tests': (
|
||||
(dict(indent=None), '''\
|
||||
{1: 'two', b'three': [(4.5, 6.7), [{8, 9}, frozenset({10, 11})]]}'''),
|
||||
{1: 'two', b'three': [(4.5, 6.25), [{8, 9}, frozenset({10, 11})]]}'''),
|
||||
(dict(indent=False), '''\
|
||||
{
|
||||
1: 'two',
|
||||
b'three': [
|
||||
(
|
||||
4.5,
|
||||
6.7,
|
||||
6.25,
|
||||
),
|
||||
[
|
||||
{
|
||||
|
@ -430,7 +430,7 @@ class ReprTests(unittest.TestCase):
|
|||
b'three': [
|
||||
(
|
||||
4.5,
|
||||
6.7,
|
||||
6.25,
|
||||
),
|
||||
[
|
||||
{
|
||||
|
@ -450,7 +450,7 @@ class ReprTests(unittest.TestCase):
|
|||
b'three': [
|
||||
(
|
||||
4.5,
|
||||
6.7,
|
||||
6.25,
|
||||
),
|
||||
[
|
||||
{
|
||||
|
@ -470,7 +470,7 @@ class ReprTests(unittest.TestCase):
|
|||
b'three': [
|
||||
(
|
||||
4.5,
|
||||
6.7,
|
||||
6.25,
|
||||
),
|
||||
[
|
||||
{
|
||||
|
@ -490,7 +490,7 @@ class ReprTests(unittest.TestCase):
|
|||
b'three': [
|
||||
(
|
||||
4.5,
|
||||
6.7,
|
||||
6.25,
|
||||
),
|
||||
[
|
||||
{
|
||||
|
@ -518,7 +518,7 @@ class ReprTests(unittest.TestCase):
|
|||
b'three': [
|
||||
(
|
||||
4.5,
|
||||
6.7,
|
||||
6.25,
|
||||
),
|
||||
[
|
||||
{
|
||||
|
@ -538,7 +538,7 @@ class ReprTests(unittest.TestCase):
|
|||
-->b'three': [
|
||||
-->-->(
|
||||
-->-->-->4.5,
|
||||
-->-->-->6.7,
|
||||
-->-->-->6.25,
|
||||
-->-->),
|
||||
-->-->[
|
||||
-->-->-->{
|
||||
|
@ -558,7 +558,7 @@ class ReprTests(unittest.TestCase):
|
|||
....b'three': [
|
||||
........(
|
||||
............4.5,
|
||||
............6.7,
|
||||
............6.25,
|
||||
........),
|
||||
........[
|
||||
............{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue