Design Pattern Examples
Overview of object-oriented design patterns
DesignPatternExamples_python.proxy.proxy_class_real Namespace Reference

Classes

class  Real_Class
 The real class object that does all the work. More...
 
class  Real_Classes_Container
 A class factory for getting the real class. More...
 

Variables

list __all__ = ["Real_Classes_Container"]
 Control what will be exported from this module if the user were to use from proxy_class_real import * (Which no one really should be doing as it's bad form.)
 

Variable Documentation

◆ __all__

list __all__ = ["Real_Classes_Container"]
private

Control what will be exported from this module if the user were to use from proxy_class_real import * (Which no one really should be doing as it's bad form.)

Definition at line 65 of file proxy_class_real.py.