瀏覽代碼

Fix bug when an extended slice's stop argument is missing.

tags/v0.2
Ben Kurtovic 11 年之前
父節點
當前提交
65c3950e89
共有 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 or 0, key.stop or 0, key.step or 1]
sliceinfo = [key.start or 0, key.stop or maxsize, key.step or 1]
child = _ListProxy(self, sliceinfo)
self._children[id(child)] = (child, sliceinfo)
return child


Loading…
取消
儲存