Skip to content

Commit

Permalink
#143 browsableObjectを指定したinitializeを行うと内部項目に正しくアクセスできない状態でリストが生成されていた…
Browse files Browse the repository at this point in the history
…問題を修正
  • Loading branch information
yamahubuki committed Jul 10, 2020
1 parent 9327884 commit 498196b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion lists/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ def _GetJumpKey(self,index):
except ValueError: #ネットワークリソースなどサイズが未定義の場合に発生
return -1
else:
print (self._getSortFunction(sortType)(self.GetElement(index)))
return self._getSortFunction(sortType)(self.GetElement(index))

def GetElement(self,index):
Expand Down
2 changes: 1 addition & 1 deletion lists/networkResource.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def Initialize(self,path,silent=False):
self.rootDirectory=path
t=misc.Timer()
if isinstance(path,list):#パラメータがリストなら、browsableObjects のリストとして処理刷る(ファイルリストを取得しないでコピーする)
self.resources=path
self.resources+=path
return errorCodes.OK
#end copy
self.resources.clear()
Expand Down
3 changes: 1 addition & 2 deletions lists/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ def Initialize(self,file,silent=False):
"""ファイル名から副ストリーム情報を取得し、リストを初期化する。入力は絶対パスでなければならない。情報が取得できなかった場合、errorCodes.OK以外が返る。。"""
t=misc.Timer()
if isinstance(file,list):#パラメータがリストなら、browsableObjects のリストとして処理刷る(ファイルリストを取得しないでコピーする)
self.streams=file
self.lists=[self.streams]
self.streams+=file
return
#end copy

Expand Down

0 comments on commit 498196b

Please sign in to comment.