Skip to content

v2.8

Compare
Choose a tag to compare
@Fatal1ty Fatal1ty released this 16 Oct 16:51
· 761 commits to master since this release
  • Added support for Python 3.10
  • PEP 585 compliance
  • Added support for TypedDict
  • Added support for typed NamedTuple and untyped namedtuple
  • Fixed Tuple serialization and deserialization. Before 2.8 all values of tuples were deserialized as if they were values of the first type, no matter how many values the tuple was supposed to take. Now the following types are handled correctly: Tuple[int], Tuple[int, ...], Tuple[int, str], Tuple[()], Tuple.