design-patterns/structural/flyweight/__init__.py
2020-09-29 22:05:56 +02:00

5 lines
176 B
Python

"""
Lets you fit more objects into the available amount of RAM by sharing common
parts of state between multiple objects instead of keeping all of the data in
each object.
"""