Make avro.io.DataFileReader iterable
------------------------------------
Key: AVRO-155
URL: https://issues.apache.org/jira/browse/AVRO-155
Project: Avro
Issue Type: Improvement
Components: python
Reporter: Jeff Hammerbacher
When reading records out of a file object container using the Python bindings,
it would be great to be able to say:
{code}
for record in dfr:
<do something with record>
{code}
There's already a "next()" method defined on the DataFileReader, but the
__iter__ method is not defined and we "return None" instead of "raise
StopIteration" when out of records.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.