-
```sql
SELECT "id", "name", "age" FROM "users" WHERE "age" > {{ age }};
```
```python
from pathlib import Path
from sqlite3 import connect
from typing import NewType
from typing import TypeAlia…
-
### Is your feature request related to a problem? Please describe.
Not a problem, but when writing functions/classes with lots of options, and in particular when these options need to be forwarded …
-
[`typing_extensions` 4.10 added support](https://typing-extensions.readthedocs.io/en/latest/index.html#typing_extensions.TypedDict.__extra_items__) for [PEP-728](https://peps.python.org/pep-0728/). Ho…
-
**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…
-
There's been some demand for pydantic `BaseModel` versions of the documents.
I propose we change event-model document generation to allow for these, in a backwards compatible way.
## 1: Converti…
-
If the bug is related to a specific library below, please raise an issue in the
respective repo directly: TFX
**System information**
- Have I specified the code to reproduce the issue (Yes, No)…
-
**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…
-
### Python -VV
```shell
Python 3.10.14 (main, Aug 14 2024, 05:14:46) [Clang 18.1.8 ]
```
### Pip Freeze
```shell
aiohappyeyeballs==2.4.0
aiohttp==3.10.5
aiosignal==1.3.1
annotated-types==0.7.0
…
-
**Feature**
[PEP 728](https://peps.python.org/pep-0728/) proposes changes to `TypedDict`, including the ability to specify the types of unspecified keys.
This has been [implemented in `typing_ex…
-
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…