You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Antoine Pitrou (JIRA)" <ji...@apache.org> on 2018/02/14 13:45:00 UTC

[jira] [Created] (ARROW-2154) [Python] __eq__ unimplemented on Buffer

Antoine Pitrou created ARROW-2154:
-------------------------------------

             Summary: [Python] __eq__ unimplemented on Buffer
                 Key: ARROW-2154
                 URL: https://issues.apache.org/jira/browse/ARROW-2154
             Project: Apache Arrow
          Issue Type: Improvement
          Components: Python
    Affects Versions: 0.8.0
            Reporter: Antoine Pitrou


Having to call {{equals()}} is un-Pythonic:
{code:python}
>>> pa.frombuffer(b'foo') == pa.frombuffer(b'foo')
False
>>> pa.frombuffer(b'foo').equals(pa.frombuffer(b'foo'))
True
{code}

Same for many other pyarrow types, incidently.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)