We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70ee3bf commit 4270363Copy full SHA for 4270363
pandas/tests/series/conftest.py
@@ -9,8 +9,6 @@
9
def datetime_series():
10
"""
11
Fixture for Series of floats with DatetimeIndex
12
-
13
- See pandas.util.testing.makeTimeSeries
14
15
s = tm.makeTimeSeries()
16
s.name = 'ts'
@@ -21,8 +19,6 @@ def datetime_series():
21
19
def string_series():
22
20
23
Fixture for Series of floats with Index of unique strings
24
25
- See pandas.util.testing.makeStringSeries
26
27
s = tm.makeStringSeries()
28
s.name = 'series'
@@ -33,8 +29,6 @@ def string_series():
33
29
def object_series():
34
30
35
31
Fixture for Series of dtype datetime64[ns] with Index of unique strings
36
37
- See pandas.util.testing.makeObjectSeries
38
32
39
s = tm.makeObjectSeries()
40
s.name = 'objects'
0 commit comments