You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Michael A. Smith (Jira)" <ji...@apache.org> on 2020/03/01 16:06:00 UTC

[jira] [Commented] (AVRO-2765) dump command in avro-python3 tool module fails

    [ https://issues.apache.org/jira/browse/AVRO-2765?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17048619#comment-17048619 ] 

Michael A. Smith commented on AVRO-2765:
----------------------------------------

Thanks, I'll make a pr to convert all uses of {{file}} to {{open}}. You might want to know that the py3 library is getting closed out as of avro 1.10, and lang/py works with python3 in the master branch. So that's where most of our focus is now.

> dump command in avro-python3 tool module fails
> ----------------------------------------------
>
>                 Key: AVRO-2765
>                 URL: https://issues.apache.org/jira/browse/AVRO-2765
>             Project: Apache Avro
>          Issue Type: Bug
>          Components: python, tools
>    Affects Versions: 1.9.2
>            Reporter: Olaf
>            Priority: Minor
>
> Trying to dump an Avro file with the python3 tool command:
> {quote}{{> python3 -m *avro.tool* dump test.avro}}
> {quote}
> fails on:
> {quote}{{NameError: name 'file' is not defined}}
> {quote}
> This needs fixing by changing line 105 of avro/tool.py from:
> {quote}{{return *file*(f)}}
> {quote}
> into:
> {quote}{{return *open*(f, 'rb')}}
> {quote}
> This affects (most recent) Python3 {{_avro-python3_}} PyPI version 1.9.2.1. Didn't check whether older Python3 versions and Python2 {{_avro_}} PyPI version suffer from the same issue.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)