소스 검색

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:


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