瀏覽代碼

HAHA WHAT ARE ITERATORS

tags/v1.0^2
Ben Kurtovic 10 年之前
父節點
當前提交
5d8ac664fe
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. +4
    -3
      bitshift/parser/python.py

+ 4
- 3
bitshift/parser/python.py 查看文件

@@ -159,16 +159,17 @@ def parse_py(codelet):

def strip_encoding(lines):
"""Strips the encoding line from a file, which breaks the parser."""
it = iter(lines)
try:
first = next(lines)
first = next(it)
if not encoding_re.match(first):
yield first
second = next(lines)
second = next(it)
if not encoding_re.match(second):
yield second
except StopIteration:
return
for line in lines:
for line in it:
yield line

try:


Loading…
取消
儲存