comparison configmix/config.py @ 455:27112bb4a5b9

"yield" is only supported for older Python versions if "generators" are imported from __future__
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 15 Dec 2021 00:17:27 +0100
parents 12f25ac6a13b
children 9dc9cef1b9cd
comparison
equal deleted inserted replaced
454:12ad8ccaba99 455:27112bb4a5b9
6 """The unified configuration dictionary with attribute support or 6 """The unified configuration dictionary with attribute support or
7 variable substitution. 7 variable substitution.
8 8
9 """ 9 """
10 10
11 from __future__ import division, absolute_import, print_function 11 from __future__ import division, absolute_import, print_function, generators
12 12
13 13
14 __all__ = ["Configuration"] 14 __all__ = ["Configuration"]
15 15
16 16