[Python-Dev] PEP 435: initial values must be specified? Yes (original) (raw)
Georg Brandl g.brandl at gmx.net
Mon May 6 19:48:32 CEST 2013
- Previous message: [Python-Dev] PEP 435: initial values must be specified? Yes
- Next message: [Python-Dev] PEP 435: initial values must be specified? Yes
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Am 05.05.2013 22:09, schrieb Ethan Furman:
About the closest you going to be able to get is something like:
def e(next=[1]): e, next[0] = next[0], next[0] + 1 return e class Color(Enum): red = e() green = e() blue = e()
Uh, that's surely more nicely spelled as "e = itertools.count()"?
Georg
- Previous message: [Python-Dev] PEP 435: initial values must be specified? Yes
- Next message: [Python-Dev] PEP 435: initial values must be specified? Yes
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]