Message233861
| 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:47 | krichter | set | recipients:
+ krichter, georg.brandl, xdegaye |
| 2015年01月11日 18:04:47 | krichter | set | messageid: <1420999487.67.0.0221717495737.issue23163@psf.upfronthosting.co.za> |
| 2015年01月11日 18:04:47 | krichter | link | issue23163 messages |
| 2015年01月11日 18:04:47 | krichter | create |
|