-
**Describe your idea**
QueryOutputTableTypeDef.Items is currently typed as List[Dict[str, TableAttributeValueTypeDef]]. It would be great if one could provide a type as a generic to QueryOutputTableT…
-
**Describe the bug**
Pyright will only suggest one `Literal` value for a `TypedDict` union:
![Image](https://github.com/user-attachments/assets/8c37c827-080d-4e26-9292-b27847f0b5c5)
Ideally it'd su…
-
https://github.com/Delgan/loguru/blob/fa3746fe8ce354e8e32e444b2bc7e4221a88ac86/loguru/__init__.pyi#L215
It seems mypy 1.9.0 implemented a fix https://github.com/python/mypy/pull/14225, can `_Handle…
-
Code Idea:
The idea behind using the `TypedDict`'s was to give some structure and show what can always be expected in the `Request`'s and `Response`'s. Unfortunately there will almost always be ext…
-
### Description of the bug:
When using response_schema in generate_content the response schema is not respected if the response_schema is set using a object
### Actual vs expected behavior:
I e…
mwigh updated
16 hours ago
-
Test example I'm using for support,
```python
from typing import TypedDict
from typing_extensions import Unpack
class Foo(TypedDict, total=False):
a: int
b: str
def f(**kwar…
-
```py
from typing import TypedDict, Unpack
class TDict(TypedDict):
pass
def f[T: TDict](**kwargs: Unpack[T]) -> T: ...
reveal_type(f(a=1))
reveal_type(f(b="a"))
```
because `Ty…
-
We're building typing_extensions 4.12.2 with Python 3.14.0a1 in Fedora Linux. Unittests fail during the build:
```
+ /usr/bin/python3 -m unittest discover
.F......................................…
-
### Checked other resources
- [X] I added a very descriptive title to this issue.
- [X] I searched the [LangGraph](https://langchain-ai.github.io/langgraph/)/LangChain documentation with the integrat…
-
**Bug Report**
Calls to `TypedDict.update` don't type-check, even if all the updates are specified using keyword arguments.
**To Reproduce**
Type-check this program:
```python
from typing…