| Current Path : /proc/thread-self/root/usr/local/python-3.5/lib/python3.5/test/ |
| Current File : //proc/thread-self/root/usr/local/python-3.5/lib/python3.5/test/mod_generics_cache.py |
"""Module for testing the behavior of generics across different modules."""
from typing import TypeVar, Generic
T = TypeVar('T')
class A(Generic[T]):
pass
class B(Generic[T]):
class A(Generic[T]):
pass