소스 검색

Fix a certain bug in SmartList with Py3k (closes #17)

tags/v0.2
Ben Kurtovic 12 년 전
부모
커밋
06d3036de2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      mwparserfromhell/smart_list.py

+ 1
- 1
mwparserfromhell/smart_list.py 파일 보기

@@ -76,7 +76,7 @@ class SmartList(list):
def __getitem__(self, key):
if not isinstance(key, slice):
return super(SmartList, self).__getitem__(key)
sliceinfo = [key.start, key.stop, 1 if not key.step else key.step]
sliceinfo = [key.start or 0, key.stop or 0, key.step or 1]
child = _ListProxy(self, sliceinfo)
self._children[id(child)] = (child, sliceinfo)
return child


불러오는 중...
취소
저장