Skip to content

Commit 6b75f83

Browse files
committed
Updating Linux JPype binaries
1 parent c524667 commit 6b75f83

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
-6.87 MB
Binary file not shown.
7.42 MB
Binary file not shown.

build/extra/linux/jpype/_jcollection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __iter__(self):
3131
return self.iterator
3232

3333
def __next__(self):
34-
return next(self.iterator)
34+
return self.iterator.next()
3535

3636
# Compatibility name
3737
next = __next__
@@ -262,7 +262,7 @@ def _iterCustomNext(self):
262262

263263
def _iterIteratorNext(self):
264264
if self.hasNext():
265-
return next(self)
265+
return self.next()
266266
raise StopIteration
267267

268268

0 commit comments

Comments
 (0)