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.
 
 
 
 

16 satır
337 B

  1. #!/usr/bin/env python3
  2. from traceback import print_exception
  3. show_debug_messages = False
  4. def debug_print(what, force: bool = False):
  5. if not force and not show_debug_messages:
  6. return
  7. if isinstance(what, Exception):
  8. print_exception(type(what), value=what, tb=None)
  9. else:
  10. print("[DEBUG] %s" % what)