Ethan Furman added the comment: >From a post by Ian Kelly >(https://mail.python.org/pipermail/python-list/2014-November/681073.html) -------------------------------------------------------------- In fact it seems the behavior does differ between Python 2.7 and Python 3.4:
$ cat testatexit.py import atexit @atexit.register def main(): atexit.register(goodbye) @atexit.register def goodbye(): print("Goodbye") $ python2 testatexit.py Goodbye Goodbye $ python3 testatexit.py Goodbye ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue22867> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com