pantry/projects/python.org/typing_extensions/test.py
andrejrabcenko 6212446db6 new file: projects/python.org/typing_extensions/package.yml
new file:   projects/python.org/typing_extensions/test.py
2023-09-19 14:38:24 -04:00

7 lines
154 B
Python

import typing_extensions
class Movie(typing_extensions.TypedDict):
title: str
year: typing_extensions.NotRequired[int]
m = Movie(title="Grease")