Google+ Tools
Make Google+ profile picture
Make Google plus banners for profile
Create and share your Google Plus profile banners.

Profile image for mrk studios jarnaldich on June 1, 2012

Making a python process exit with error code 1 after 30 seconds. Exit is unclean (no garbage is collected, no flushed buffers, etc...).

Language
Python
Tags

Python Time Bomb


from threading import Timer
Timer(30, lambda : os._exit(1)).run()

Comments

blog comments powered by Disqus