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 55432dd commit ae37b6eCopy full SHA for ae37b6e
src/oracledb/fetch_info.py
@@ -72,6 +72,8 @@ def __getitem__(self, index):
72
return self.scale
73
elif index == 6 or index == -1:
74
return self.null_ok
75
+ elif isinstance(index, slice):
76
+ return tuple(self).__getitem__(index)
77
raise IndexError("list index out of range")
78
79
def __len__(self):
0 commit comments