We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7ba13 commit 3681909Copy full SHA for 3681909
pandas/tests/series/test_io.py
@@ -189,7 +189,7 @@ def test_tolist_np_int(self):
189
# GH10904
190
for t in ['int8', 'int16', 'int32', 'int64']:
191
s = pd.Series([1], dtype=t)
192
- self.assertIsInstance(s.tolist()[0], int)
+ self.assertIsInstance(s.tolist()[0], (int, long))
193
194
def test_tolist_np_uint(self):
195
0 commit comments