-
### Increasing Access
This will increase the number of legacy links that work with the new site.
### Most appropriate sub-area of p5.js?
Reference
### Feature request details
Currently,…
-
To add some type safety to the `obj` attribute of the `Context` class, I was thinking maybe it could be made generic with respect to `obj` attribute. It could then be used this way (with a `TypedDict`…
-
### Things to check first
- [X] I have searched the existing issues and didn't find my feature already requested there
### Feature description
Following up on https://github.com/agronholm/typeguar…
-
Hi there,
I'm new to datafiles but found it very useful.
However, my codebase has a TypedDict, which causes an error.
```
from datafiles import datafile
from dataclasses import dataclass
fro…
tsuga updated
2 years ago
-
I was working on some code that needs to be passed a generic TypedDict, like this:
```python
from typing import TypeVar, TypedDict, Generic
T = TypeVar("T")
ReturnValue = TypeVar("ReturnValu…
-
### Describe the bug
Sphinx automodule fails when a TypedDict contains a hyped key
### How to Reproduce
Try to use automodule on this file:
```python
from typing import TypedDict
TestDict = …
-
### Summary
Remove the `_typed_dict` module, which acts as a shortcut for importing `TypedDict`.
### What is the feature request for?
The core library
### The Problem
The `_typed_dict` module is …
-
### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
Run the code below with:
```bash
# with pydantic 2.9.2
uv run --with devtools --with 'pydantic==2.9.2' additional_…
-
# Pyre Feature Request
When you have a `Union` of `TypedDict` it would be nice to be able to narrow them. However, `pyre` doesn't seem to allow this. Even when using `Final`!
```python
from typ…
tmke8 updated
4 months ago
-
For example
```py
class Metadata(TypedDict):
created_at: datetime.datetime
class Data(TypedDict):
title: str
published: bool
metadata: Metadata
def foo(data: Data):
.…