[Python-Dev] PyPy, Jython, & IronPython: Enum convenience function and pickleablity

Maciej Fijalkowski fijall at gmail.com
Thu May 2 22:45:18 CEST 2013


On Thu, May 2, 2013 at 9:07 PM, Ethan Furman <ethan at stoneleaf.us> wrote:
> In order for the Enum convenience function to be pickleable, we have this
> line of code in the metaclass:
>
>     enum_class.__module__ = sys._getframe(1).f_globals['__name__']
>
> This works fine for Cpython, but what about the others?

It's ugly as hell, but it's not a performance problem for PyPy, since
this is executed at module load time (you probably won't jit that code
anyway)

Cheers,
fijal


More information about the Python-Dev mailing list