Skip to content

Instantly share code, notes, and snippets.

import subprocess
import glob
import re
def type_lines(ll_files):
for ll_file in ll_files:
for line in open(ll_file):
if line.startswith('%'):
yield line