This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author krichter
Recipients georg.brandl, krichter, xdegaye
Date 2015-01-11.18:04:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1420999487.67.0.0221717495737.issue23163@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry, I mean 

    #!/usr/bin/python

    import threading

    def debugging():
        def __a_thread__():
            print("2")
        a_thread = threading.Thread(target=__a_thread__)
        a_thread.start()
        a_thread.join()
        print("1")

    if __name__ == "__main__":
        debugging()

It's very uncommon to set the current debugging thread in the source.
History
Date User Action Args
2015-01-11 18:04:47krichtersetrecipients: + krichter, georg.brandl, xdegaye
2015-01-11 18:04:47krichtersetmessageid: <1420999487.67.0.0221717495737.issue23163@psf.upfronthosting.co.za>
2015-01-11 18:04:47krichterlinkissue23163 messages
2015-01-11 18:04:47krichtercreate