Open
Conversation
Contributor
Greptile OverviewGreptile SummaryThis PR migrates from Python's standard Key changes:
Issues found:
Confidence Score: 3/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant App as Reflex App
participant Socket as WebSocket Handler
participant Format as format.py
participant OrJSON as orjson (optional)
participant StdJSON as json (stdlib)
App->>Format: orjson_dumps(data)
Format->>Format: try import orjson
alt orjson installed
Format->>OrJSON: orjson.dumps()
OrJSON-->>Format: bytes
Format-->>App: str (decoded)
else orjson not installed
Format->>StdJSON: json.dumps()
StdJSON-->>Format: str
Format-->>App: str
end
Socket->>Format: orjson_loads(json_str)
Format->>Format: try import orjson
alt orjson installed
Format->>OrJSON: orjson.loads()
OrJSON-->>Format: dict/list
Format-->>Socket: parsed data
else orjson not installed
Format->>StdJSON: json.loads()
StdJSON-->>Format: dict/list
Format-->>Socket: parsed data
end
Note over Socket: Exception handler catches<br/>json.JSONDecodeError<br/>but orjson raises<br/>orjson.JSONDecodeError
|
Member
|
the issue with orjson is that we lose NaN handling which is relevant for numpy, which is why we were using JSON5 as well |
Contributor
Author
|
Yeah, that's why i did not update it in all places |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.