While on the Codec Avatar team at Meta, I helped the large scale data collection efforts. Here is some details on the open sourced datasets and papers.
How Do You Make a Tuple
Many methods exist within Python to create a tuple. Some are intuitive while others behave in strange ways. While type checking can help, complications abound.
Iterators as Function Inputs
Iterators as function inputs in Python can cause complex errors, due to storing references, differences between iterators and iterables, and other subtleties.
Iterable Membership Check
Using in for memberships in Python for iterables can behave differently. A list, dict, or iterator behave differently and type checkers may not find errors.