25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #!/usr/bin/env python3
-
- from traceback import print_exc
-
- show_debug_messages = False
-
-
- def debug_print(what):
- if not show_debug_messages:
- return
-
- if isinstance(what, Exception):
- print_exc(what)
- else:
- print("[DEBUG] %s" % what)
|