Your IP : 216.73.216.213


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