Stefan Gârlonța
Stefan Gârlonța
So first I had this code: ```python try: results = acoustid.match(self.__API_KEY, self.__file) except acoustid.NoBackendError: raise error.ChromaprintNotFoundException( "Chromaprint library/tool not found") except acoustid.FingerprintGenerationError: raise error.FingerprintGenerationError( "Fingerprint could not be calculated") except...
Hello, I have the same problem: 
Thanks @adrian-herscu for your helping improve pystreamapi! You are right that generators are not handled as they should be. The problem is very visible in this snippet: ```python def infinite_gen():...
Closing this issue as infinite generators are now handled correctly in sequential streams. In parallel streams, we cannot support (infinite) generators. If you use `Stream.of(...)` and pass a generator, it...