diff options
author | Paul Baltescu <pauldb89@gmail.com> | 2013-06-19 15:06:34 +0100 |
---|---|---|
committer | Paul Baltescu <pauldb89@gmail.com> | 2013-06-19 15:06:34 +0100 |
commit | 34d8d1a1df61a1f9409e6d205ecfa1b7cfb70562 (patch) | |
tree | 8b9d8072cae6ac024b46196c4712a5f02afc33c0 /python/src/sa/int_list.pxi | |
parent | a3243017d6b8c46cc3e41f4243311dc3dbc80ab4 (diff) | |
parent | f1ce46ec9b1b8efcc4a91a149454acf03c01db02 (diff) |
Merge branch 'master' of https://github.com/redpony/cdec
Diffstat (limited to 'python/src/sa/int_list.pxi')
-rw-r--r-- | python/src/sa/int_list.pxi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/src/sa/int_list.pxi b/python/src/sa/int_list.pxi index 79d67ad9..46d434e7 100644 --- a/python/src/sa/int_list.pxi +++ b/python/src/sa/int_list.pxi @@ -29,12 +29,12 @@ cdef class IntList: ret += str(self.len) return ret - def index(self, val): + def index(self, int val): cdef unsigned i for i in range(self.len): if self.arr[i] == val: return i - return IndexError + raise ValueError('%s not in IntList' % val) def partition(self,start,end): pivot = self.arr[end] |