Skip to content

Commit 78fcce4

Browse files
committed
Merge pull request #11197 from kawochen/CLN-11170
CLN: GH11170, * import is removed from test_internals.py
2 parents 0d67cfd + 1667d84 commit 78fcce4

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pandas/tests/test_internals.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@
77
import numpy as np
88

99
import re
10+
import itertools
1011
from pandas import Index, MultiIndex, DataFrame, DatetimeIndex, Series, Categorical
1112
from pandas.compat import OrderedDict, lrange
1213
from pandas.sparse.array import SparseArray
13-
from pandas.core.internals import *
14+
from pandas.core.internals import (BlockPlacement, SingleBlockManager, make_block,
15+
BlockManager)
16+
import pandas.core.common as com
1417
import pandas.core.internals as internals
1518
import pandas.util.testing as tm
1619
import pandas as pd
@@ -664,8 +667,8 @@ def test_interleave(self):
664667

665668
def test_interleave_non_unique_cols(self):
666669
df = DataFrame([
667-
[Timestamp('20130101'), 3.5],
668-
[Timestamp('20130102'), 4.5]],
670+
[pd.Timestamp('20130101'), 3.5],
671+
[pd.Timestamp('20130102'), 4.5]],
669672
columns=['x', 'x'],
670673
index=[1, 2])
671674

0 commit comments

Comments
 (0)