Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- #!/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)
|