[issue8905] difflib: support input generators

2010-06-06 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: If you allow me to rephrase your feature request to “difflib should allow arbitrary iterators that yield lines”, I’m +1. Adjusting the version and adding tim_one to nosy as per py3k/Misc/maintainers.rst -- nosy: +merwok, tim_one type:

[issue8905] difflib: support input generators

2010-06-06 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +brian.curtin stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8905 ___ ___

[issue8905] difflib: support input generators

2010-06-05 Thread anatoly techtonik
New submission from anatoly techtonik techto...@gmail.com: difflib operates on the lists, but it should be possible to use arbitrary generators. This will require internal limit on buffer size that has a side advantage of limiting difflib to available memory. -- components: Library