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 04d8228 commit 5e6db32Copy full SHA for 5e6db32
pandas/tests/test_frame.py
@@ -1,4 +1,5 @@
1
# pylint: disable-msg=W0612,E1101
2
+from __future__ import with_statement
3
from copy import deepcopy
4
from datetime import datetime, timedelta
5
from StringIO import StringIO
@@ -1107,6 +1108,9 @@ def test_getitem_list_duplicates(self):
1107
1108
expected = df.ix[:, 2:]
1109
assert_frame_equal(result, expected)
1110
1111
+ def test_dupes_in_col_list (self):
1112
+ DataFrame([[8,5]],columns=["a","a"])
1113
+
1114
def test_get_value(self):
1115
for idx in self.frame.index:
1116
for col in self.frame.columns:
0 commit comments