[Python] bool followed by float disallowed, but float followed by bool allowed
Open
Component: Python
Type: bug
- Dominant language
- C++
- Stars
- 17.1k
- Forks
- 4.3k
- Avg merge
- 3d 13h
- Merged PRs (30d)
- 88
Description
### Describe the bug, including details regarding any error messages, version, and platform.
```python
>>> pa.array([True, 1.0])
Traceback (most recent call last):
File "", line 1, in
File "pyarrow/array.pxi", line 344, in pyarrow.lib.array
File "pyarrow/array.pxi", line 42, in pyarrow.lib._sequence_to_array
File "pyarrow/error.pxi", line 154, in pyarrow.lib.pyarrow_internal_check_status
File "pyarrow/error.pxi", line 91, in pyarrow.lib.check_status
pyarrow.lib.ArrowInvalid: Could not convert 1.0 with type float: tried to convert to boolean
>>> pa.array([1.0, True])
[
1,
1
]
```
### Component(s)
Python
Contributor guide
Assessment
This issue has not been assessed yet.