You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "ASF subversion and git services (Jira)" <ji...@apache.org> on 2020/04/22 18:51: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=17089943#comment-17089943 ] 

ASF subversion and git services commented on AVRO-2765:
-------------------------------------------------------

Commit 97c2aeb6ca5186524e8576febfe44b1a03a1b97e in avro's branch refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=97c2aeb ]

AVRO-2765: Py3 Support: Use open(), not file() (#836)



> 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)