schlopp / ppbot-v2

Discord bot for growing a pp
8 stars 6 forks source link

Upgrade from python3.8 to python3.10 #50

Open schlopp opened 2 years ago

schlopp commented 2 years ago

Relative new features

schlopp commented 2 years ago

About type-hinting

Most features in the typing have been added as built-in generics to the standard classes. Generics like typing.List[...], typing.Tuple[...], typing.Dict[..., ...] etc are now available in the standard classes. Unions have also been added via the | operator. E.g. typing.Optional[...] > ... | None