Your IP : 216.73.216.213


Current Path : /opt/alt/python35/lib64/python3.5/test/
Upload File :
Current File : //opt/alt/python35/lib64/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