We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3050bf2 commit a2ecb0cCopy full SHA for a2ecb0c
pandas/core/indexing.py
@@ -20,6 +20,9 @@ def __init__(self, obj):
20
self.obj = obj
21
self.ndim = obj.ndim
22
23
+ def __iter__(self):
24
+ raise NotImplementedError('ix is not iterable')
25
+
26
def __getitem__(self, key):
27
if isinstance(key, tuple):
28
try:
setup.py
@@ -2,9 +2,8 @@
2
3
"""
4
Parts of this file were taken from the pyzmq project
5
-(https://github.com/zeromq/pyzmq) and hence are subject to the terms of the
6
-Lesser GNU General Public License.
7
-Parts are from lxml (https://github.com/lxml/lxml)
+(https://github.com/zeromq/pyzmq) which have been permitted for use under the
+BSD license. Parts are from lxml (https://github.com/lxml/lxml)
8
9
10
from datetime import datetime
0 commit comments