software_patterns   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 14
dl 0
loc 16
rs 10
c 0
b 0
f 0
1
__version__ = '2.0.0'
2
3
from .memoize import ObjectsPool
4
from .notification import Observer, Subject
5
from .proxy import Proxy
6
from .singleton import Singleton
7
from .subclass_registry import SubclassRegistry
8
9
__all__ = [
10
    'Observer',
11
    'Subject',
12
    'ObjectsPool',
13
    'SubclassRegistry',
14
    'Proxy',
15
    'Singleton',
16
]
17