1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
| import numpy as np
| import pytest
|
| import pandas._config.config as cf
|
| from pandas import Index
|
|
| class TestIndexRendering:
| @pytest.mark.parametrize(
| "index,expected",
| [
| # ASCII
| # short
| (
| Index(["a", "bb", "ccc"]),
| """Index(['a', 'bb', 'ccc'], dtype='object')""",
| ),
| # multiple lines
| (
| Index(["a", "bb", "ccc"] * 10),
| "Index(['a', 'bb', 'ccc', 'a', 'bb', 'ccc', 'a', "
| "'bb', 'ccc', 'a', 'bb', 'ccc',\n"
| " 'a', 'bb', 'ccc', 'a', 'bb', 'ccc', 'a', "
| "'bb', 'ccc', 'a', 'bb', 'ccc',\n"
| " 'a', 'bb', 'ccc', 'a', 'bb', 'ccc'],\n"
| " dtype='object')",
| ),
| # truncated
| (
| Index(["a", "bb", "ccc"] * 100),
| "Index(['a', 'bb', 'ccc', 'a', 'bb', 'ccc', 'a', 'bb', 'ccc', 'a',\n"
| " ...\n"
| " 'ccc', 'a', 'bb', 'ccc', 'a', 'bb', 'ccc', 'a', 'bb', 'ccc'],\n"
| " dtype='object', length=300)",
| ),
| # Non-ASCII
| # short
| (
| Index(["あ", "いい", "ううう"]),
| """Index(['あ', 'いい', 'ううう'], dtype='object')""",
| ),
| # multiple lines
| (
| Index(["あ", "いい", "ううう"] * 10),
| (
| "Index(['あ', 'いい', 'ううう', 'あ', 'いい', 'ううう', "
| "'あ', 'いい', 'ううう', 'あ', 'いい', 'ううう',\n"
| " 'あ', 'いい', 'ううう', 'あ', 'いい', 'ううう', "
| "'あ', 'いい', 'ううう', 'あ', 'いい', 'ううう',\n"
| " 'あ', 'いい', 'ううう', 'あ', 'いい', "
| "'ううう'],\n"
| " dtype='object')"
| ),
| ),
| # truncated
| (
| Index(["あ", "いい", "ううう"] * 100),
| (
| "Index(['あ', 'いい', 'ううう', 'あ', 'いい', 'ううう', "
| "'あ', 'いい', 'ううう', 'あ',\n"
| " ...\n"
| " 'ううう', 'あ', 'いい', 'ううう', 'あ', 'いい', "
| "'ううう', 'あ', 'いい', 'ううう'],\n"
| " dtype='object', length=300)"
| ),
| ),
| ],
| )
| def test_string_index_repr(self, index, expected):
| result = repr(index)
| assert result == expected
|
| @pytest.mark.parametrize(
| "index,expected",
| [
| # short
| (
| Index(["あ", "いい", "ううう"]),
| ("Index(['あ', 'いい', 'ううう'], dtype='object')"),
| ),
| # multiple lines
| (
| Index(["あ", "いい", "ううう"] * 10),
| (
| "Index(['あ', 'いい', 'ううう', 'あ', 'いい', "
| "'ううう', 'あ', 'いい', 'ううう',\n"
| " 'あ', 'いい', 'ううう', 'あ', 'いい', "
| "'ううう', 'あ', 'いい', 'ううう',\n"
| " 'あ', 'いい', 'ううう', 'あ', 'いい', "
| "'ううう', 'あ', 'いい', 'ううう',\n"
| " 'あ', 'いい', 'ううう'],\n"
| " dtype='object')"
| ""
| ),
| ),
| # truncated
| (
| Index(["あ", "いい", "ううう"] * 100),
| (
| "Index(['あ', 'いい', 'ううう', 'あ', 'いい', "
| "'ううう', 'あ', 'いい', 'ううう',\n"
| " 'あ',\n"
| " ...\n"
| " 'ううう', 'あ', 'いい', 'ううう', 'あ', "
| "'いい', 'ううう', 'あ', 'いい',\n"
| " 'ううう'],\n"
| " dtype='object', length=300)"
| ),
| ),
| ],
| )
| def test_string_index_repr_with_unicode_option(self, index, expected):
| # Enable Unicode option -----------------------------------------
| with cf.option_context("display.unicode.east_asian_width", True):
| result = repr(index)
| assert result == expected
|
| def test_repr_summary(self):
| with cf.option_context("display.max_seq_items", 10):
| result = repr(Index(np.arange(1000)))
| assert len(result) < 200
| assert "..." in result
|
| def test_summary_bug(self):
| # GH#3869
| ind = Index(["{other}%s", "~:{range}:0"], name="A")
| result = ind._summary()
| # shouldn't be formatted accidentally.
| assert "~:{range}:0" in result
| assert "{other}%s" in result
|
| def test_index_repr_bool_nan(self):
| # GH32146
| arr = Index([True, False, np.nan], dtype=object)
| exp1 = arr.format()
| out1 = ["True", "False", "NaN"]
| assert out1 == exp1
|
| exp2 = repr(arr)
| out2 = "Index([True, False, nan], dtype='object')"
| assert out2 == exp2
|
| def test_format_different_scalar_lengths(self):
| # GH#35439
| idx = Index(["aaaaaaaaa", "b"])
| expected = ["aaaaaaaaa", "b"]
| assert idx.format() == expected
|
|