2012-01-05 21:57:31 +00:00
|
|
|
from cocoa.inter import signature, PySelectableList
|
2011-09-21 20:02:13 +00:00
|
|
|
|
|
|
|
class PyPrioritizeList(PySelectableList):
|
|
|
|
@signature('v@:@i')
|
|
|
|
def moveIndexes_toIndex_(self, indexes, dest_index):
|
|
|
|
self.py.move_indexes(indexes, dest_index)
|
|
|
|
|