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

5 lines
174 B
Python

"""
Lets you construct complex objects step by step. The pattern allows you to
produce different types and representations of an object using the same
construction code.
"""