Skip to content

Commit 6b48af3

Browse files
author
Chang She
committed
Removed old duplicated makeDateIndex definition
1 parent 785537e commit 6b48af3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/util/testing.py

-4
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,6 @@ def makeFloatIndex(k):
163163
values = sorted(np.random.random_sample(k)) - np.random.random_sample(1)
164164
return Index(values * (10 ** np.random.randint(0, 9)))
165165

166-
def makeDateIndex(k):
167-
dates = list(bdate_range(datetime(2000, 1, 1), periods=k))
168-
return Index(dates)
169-
170166
def makeFloatSeries():
171167
index = makeStringIndex(N)
172168
return Series(randn(N), index=index)

0 commit comments

Comments
 (0)