[Python-Dev] Re: [Python-checkins] CVS: python/dist/src/Lib sre_constants.py (etc)

Fredrik Lundh fredrik@effbot.org
Thu, 15 Feb 2001 23:40:03 +0100


can anyone explain why it's a good idea to have totally
incomprehensible stuff like

    __all__ = locals().keys()
    for _i in range(len(__all__)-1,-1,-1):
        if __all__[_i][0] == "_":
            del __all__[_i]
    del _i

in my code?

Annoyed /F