Oscar Benjamin wrote: > On 15 October 2015 at 09:16, Peter Otten <__pete...@web.de> wrote: >> >> def preprocess(filename): >> with open(filename) as f: >> for row in csv.reader(f): >> # do stuff >> yield row >> >> rows = preprocess("pandas.csv") > > Take the with statement outside of the generator and do something like:
When will I ever learn :( -- https://mail.python.org/mailman/listinfo/python-list