[ 
https://issues.apache.org/jira/browse/AVRO-155?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Hammerbacher updated AVRO-155:
-----------------------------------

    Attachment: AVRO-155.patch

Make DataFileReader iterable. Note that I didn't run the tests because I only 
have Java 5 on my box (thanks, Apple). If you have Java 6 and can check that 
tests pass, that would be great. If folks rely on next() returning "None" in a 
test, then some things will break.

> 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
>         Attachments: AVRO-155.patch
>
>
> 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.

Reply via email to