-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Closed
Labels
Description
First Check
- I added a very descriptive title to this issue.
- I used the GitHub search to find a similar issue and didn't find it.
- I searched the FastAPI documentation, with the integrated search.
- I already searched in Google "How to X in FastAPI" and didn't find any information.
- I already read and followed all the tutorial in the docs and didn't find an answer.
- I already checked if it is not related to FastAPI but to Pydantic.
- I already checked if it is not related to FastAPI but to Swagger UI.
- I already checked if it is not related to FastAPI but to ReDoc.
Commit to Help
- I commit to help with one of those options 👆
Example Code
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {f"{2**61}": 2**61}Description
trying to return a long integer value (e.g., 2**61)
numbers are rounded to next 1,000
the output of the code is:
{
"2305843009213693952": 2305843009213694000
}Operating System
Linux
Operating System Details
Ubuntu 22.04 (in WSL2 / Windows-11)
FastAPI Version
0.85.0
Python Version
3.9.13
Additional Context
No response
Reactions are currently unavailable