Commit 07e784c
authored
### Rationale for this change
This PR removes the deprecated `Array.format` method as requested in issue #48102.
### What changes are included in this PR?
- Removed the deprecated `Array.format` method from the Python API
- The method will be automatically removed from the documentation (https://arrow.apache.org/docs/python/generated/pyarrow.Array.html) as it's auto-generated from the source code
### Are these changes tested?
Yes, existing tests continue to pass.
### Are there any user-facing changes?
**This PR includes breaking changes to public APIs.**
The deprecated `Array.format` method has been removed. Users who have not migrated from this deprecated method should use `Array.to_string()` instead. This change was announced in the deprecation warning since 2020.
**Migration:**
```python
# Old (deprecated)
array.format()
# New
array.to_string()
* GitHub Issue: #48102
Authored-by: Eslam Ahmed <eslamahmedd171@gmail.com>
Signed-off-by: AlenkaF <frim.alenka@gmail.com>
1 parent 8040f2a commit 07e784c
1 file changed
+0
-16
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1465 | 1465 | | |
1466 | 1466 | | |
1467 | 1467 | | |
1468 | | - | |
1469 | | - | |
1470 | | - | |
1471 | | - | |
1472 | | - | |
1473 | | - | |
1474 | | - | |
1475 | | - | |
1476 | | - | |
1477 | | - | |
1478 | | - | |
1479 | | - | |
1480 | | - | |
1481 | | - | |
1482 | | - | |
1483 | | - | |
1484 | 1468 | | |
1485 | 1469 | | |
1486 | 1470 | | |
| |||
0 commit comments