-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dh/function-after-input
- Loading branch information
Showing
163 changed files
with
7,535 additions
and
1,926 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,6 @@ node_modules/ | |
/worktree/ | ||
|
||
/.editorconfig | ||
/.pdm-python | ||
/*.lcov | ||
/*.profdata | ||
/*.profraw | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
# TODO: don't want to expose this staticmethod, requires https://github.com/PyO3/pyo3/issues/2384 | ||
pydantic_core._pydantic_core.PydanticUndefinedType.new | ||
# As per #1240, from_json has custom logic to coverage the `cache_strings` kwarg | ||
# See #1540 for discussion | ||
pydantic_core._pydantic_core.from_json | ||
pydantic_core._pydantic_core.SchemaValidator.validate_python | ||
pydantic_core._pydantic_core.SchemaValidator.validate_json | ||
pydantic_core._pydantic_core.SchemaValidator.validate_strings | ||
# the `warnings` kwarg for SchemaSerializer functions has custom logic | ||
pydantic_core._pydantic_core.SchemaSerializer.to_python | ||
pydantic_core._pydantic_core.SchemaSerializer.to_json |
Oops, something went wrong.