Wrong long int value exported
Open
bug
- Dominant language
- Python
- Stars
- 4.8k
- Forks
- 617
- PR merge metrics
- No merged PRs in 30d
Description
I have the code:
```python
import tablib
data = tablib.Dataset()
data.headers = ['test_id']
a = 568883383628111872
data.append([a])
with open('test.xls', 'wb') as f:
f.write(data.xls)
```
Which produces one `xls` file with id as `568883383628112000`.
Contributor guide
Assessment
This issue has not been assessed yet.