OwlCyberSecurity - MANAGER
Edit File: pdb.cpython-33.pyo
� ��f����c������������"���@���s���d��Z��d�d�l�Z�d�d�l�Z�d�d�l�Z�d�d�l�Z�d�d�l�Z�d�d�l�Z�d�d�l�Z�d�d�l�Z�d�d�l �Z �d�d�l �Z �d�d�l�Z�d�d�l�Z�d�d�l �Z �Gd�d����d�e���Z�d�d�d�d�d �d �d�d�d �g �Z�d�d����Z�d�d����Z�d�d����Z�Gd�d����d�e���Z�d�Z�Gd�d����d�e�j�e�j���Z�e��e�k �r�d �d�d�d�d�d�d�d�d�d �d!�d"�d#�d$�d%�d&�d'�d(�d�d)�d*�d+�d,�d-�d.�d/�d0�d1�d2�d3�d4�d5�d6�d7�g"�Z�x2�e�D]*�Z�e��e�e�d8�e���j��j����d9�7Z��q�We��e�j�j��7Z��[�[�n��e�e�d:�d���Z �e�e�d;�d���Z!�d<�d ����Z"�d=�d ����Z#�d>�d����Z$�e�d?�d���Z%�d@�d����Z&�dA�Z'�dB�dC����Z(�dD�d ����Z)�dE�Z*�dF�dG����Z+�e,�dH�k�r�d�d�l-�Z-�e-�j+����n��d�S(I���u^ �� The Python Debugger Pdb ======================= To use the debugger in its simplest form: >>> import pdb >>> pdb.run('<a statement>') The debugger's prompt is '(Pdb) '. This will stop in the first function call in <a statement>. Alternatively, if a statement terminated with an unhandled exception, you can use pdb's post-mortem facility to inspect the contents of the traceback: >>> <a statement> <exception traceback> >>> import pdb >>> pdb.pm() The commands recognized by the debugger are listed in the next section. Most can be abbreviated as indicated; e.g., h(elp) means that 'help' can be typed as 'h' or 'help' (but not as 'he' or 'hel', nor as 'H' or 'Help' or 'HELP'). Optional arguments are enclosed in square brackets. Alternatives in the command syntax are separated by a vertical bar (|). A blank line repeats the previous command literally, except for 'list', where it lists the next 11 lines. Commands that the debugger doesn't recognize are assumed to be Python statements and are executed in the context of the program being debugged. Python statements can also be prefixed with an exclamation point ('!'). This is a powerful way to inspect the program being debugged; it is even possible to change variables or call functions. When an exception occurs in such a statement, the exception name is printed but the debugger's state is not changed. The debugger supports aliases, which can save typing. And aliases can have parameters (see the alias help entry) which allows one a certain level of adaptability to the context under examination. Multiple commands may be entered on a single line, separated by the pair ';;'. No intelligence is applied to separating the commands; the input is split at the first ';;', even if it is in the middle of a quoted string. If a file ".pdbrc" exists in your home directory or in the current directory, it is read in and executed as if it had been typed at the debugger prompt. This is particularly useful for aliases. If both files exist, the one in the home directory is read first and aliases defined there can be overriden by the local file. Aside from aliases, the debugger is not directly programmable; but it is implemented as a class from which you can derive your own debugger class, which you can make as fancy as you like. Debugger commands ================= i����Nc�������������B���s���|��Ee��Z�d��Z�d�Z�d�S(���u���RestartuB���Causes a debugger to be restarted for the debugged python program.N(���u���__name__u ���__module__u���__qualname__u���__doc__(���u ���__locals__(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���RestartT���s���u���Restartu���runu���pmu���Pdbu���runevalu���runctxu���runcallu ���set_traceu���post_mortemu���helpc�������������C���s����t��j�d�t��j�|������}�y�t�|���}�Wn�t�k �rD�d��SYn�Xd�}�d��}�xK�|�j����}�|�d�k�rp�Pn��|�j�|���r��|��|�|�f�}�Pn��|�d�7}�qT�|�j����|�S(���Nu���def\s+%s\s*[(]i���u����( ���u���reu���compileu���escapeu���openu���IOErroru���Noneu���readlineu���matchu���close(���u���funcnameu���filenameu���creu���fpu���linenou���answeru���line(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���find_function[���s"���� u ���find_functionc�������������C���sz���t��j�|����\�}�}�t��j�|����r@�|��j�|��j�k�r@�|�d�f�St��j�|����rY�|�d�f�St��j�|�|�d������|�d�f�S(���Ni���(���u���inspectu ���findsourceu���isframeu ���f_globalsu���f_localsu���ismoduleu���getblock(���u���obju���linesu���lineno(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���getsourcelineso���s����! u���getsourcelinesc�������������C���sJ���t��t�j�|������}�|�j����x$�|�D]�\�}�}�|�|�k�r&�|�Sq&�Wd�S(���Ni����(���u���listu���disu���findlinestartsu���reverse(���u���codeu���lastiu ���linestartsu���iu���lineno(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���lasti2linenox���s���� u���lasti2linenoc�������������B���s&���|��Ee��Z�d��Z�d�Z�d�d����Z�d�S(���u���_rstru#���String that doesn't quote its repr.c�������������C���s���|��S(���N(����(���u���self(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���__repr__����s����u���_rstr.__repr__N(���u���__name__u ���__module__u���__qualname__u���__doc__u���__repr__(���u ���__locals__(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_rstr����s���u���_rstru��� -> c�������������B���s���|��Ee��Z�d��Z�d�d��d��d��d��d�d���Z�d�d����Z�d�d����Z�d�d ����Z�d �d����Z �d�d ����Z �d�d����Z�d�d����Z�d�d����Z �d�d����Z�d�d����Z�d�d����Z�d�d����Z�d�d����Z�d�d����Z�d �d!����Z�d"�d#����Z�d$�d%����Z�d&�d'����Z�d(�d)����Z�d*�d+����Z�d,�d-����Z�d.�d/����Z�d0�d1����Z�d2�d3����Z�e�Z�d4�d5�d6���Z�d7�d8����Z �e�Z!�e�Z"�e�Z#�d9�d:����Z$�e�Z%�d;�d<����Z&�d=�d>����Z'�d?�d@����Z(�e�Z)�dA�dB����Z*�e�Z+�dC�dD����Z,�e�Z-�dE�dF����Z.�e�Z/�dG�dH����Z0�e0�Z1�e�Z2�e�Z3�dI�dJ����Z4�e4�Z5�e4�Z6�dK�dL����Z7�dM�dN����Z8�e8�Z9�dO�dP����Z:�e:�Z;�dQ�dR����Z<�e<�Z=�dS�dT����Z>�e>�Z?�dU�dV����Z@�e@�ZA�dW�dX����ZB�eB�ZC�dY�dZ����ZD�eD�ZE�d[�d\����ZF�eF�ZG�ZH�d]�d^����ZI�eI�ZJ�d_�d`����ZK�e�ZL�da�db����ZM�eM�ZN�eM�ZO�dc�dd����ZP�de�df����ZQ�eQ�ZR�dg�dh����ZS�eS�ZT�di�dj����ZU�d��dk�dl���ZV�dm�dn����ZW�eW�ZX�do�dp����ZY�e�ZZ�e�Z[�e�Z\�dq�dr����Z]�e]�Z^�ds�dt����Z_�e_�Z`�du�dv����Za�e�Zb�f��d��dw�dx���Zc�dy�dz����Zd�e�Ze�d{�d|����Zf�e�Zg�d}�d~����Zh�d�d�����Zi�d��d�����Zj�d��d�����Zk�d��d�����Zl�d��d�����Zm�d��d��d��d��d��d��g�Zn�d��d�����Zo�ep�d��d����Zq�d��d�����Zr�er�Zs�d��d�����Zt�d��d�����Zu�d��d�����Zv�d��d�����Zw�d��S(����u���Pdbu���tabc������� ���#���C���s���t��j�j�|��d�|��t�j�j�|��|�|�|���|�rA�d�|��_�n��d�|��_�i��|��_�i��|��_�d�|��_ �d�|��_�i��|��_�y�d�d��l �}�|�j�d���Wn�t�k �r��Yn�Xd�|��_�|�|��_�g��|��_�d�t�j�k�r0t�j�d�}�y8�t�t�j�j�|�d�������}�|��j�j�|���Wd��QXWq0t�k �r,Yq0Xn��y)�t�d�����}�|��j�j�|���Wd��QXWn�t�k �rmYn�Xi��|��_�i��|��_�i��|��_�d�|��_�d��|��_�d��S( ���Nu���skipi����u���(Pdb) u����u��� `@#$%^&*()=+[{]}\|;:'",<>?u���HOMEu���.pdbrcF( ���u���bdbu���Bdbu���__init__u���cmdu���Cmdu���use_rawinputu���promptu���aliasesu ���displayingu ���mainpyfileu���Falseu���_wait_for_mainpyfileu ���tb_linenou���readlineu���set_completer_delimsu���ImportErroru���allow_kbdintu���nosigintu���rcLinesu���osu���environu���openu���pathu���joinu���extendu���IOErroru���commandsu���commands_dopromptu���commands_silentu���commands_definingu���Noneu ���commands_bnum( ���u���selfu���completekeyu���stdinu���stdoutu���skipu���nosigintu���readlineu���envHomeu���rcFile(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���__init__����sF���� u���Pdb.__init__c�������������C���sP���|��j��r�t���n��|��j�d���|��j����|��j�|���t�j�t�j�|��j���d��S(���Nu-��� Program interrupted. (Use 'cont' to resume).(���u���allow_kbdintu���KeyboardInterruptu���messageu���set_stepu ���set_traceu���signalu���SIGINTu���_previous_sigint_handler(���u���selfu���signumu���frame(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���sigint_handler����s���� u���Pdb.sigint_handlerc�������������C���s���t��j�j�|����|��j����d��S(���N(���u���bdbu���Bdbu���resetu���forget(���u���self(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���reset����s����u ���Pdb.resetc�������������C���s5���d��|��_�g��|��_�d�|��_�d��|��_�|��j�j����d��S(���Ni����(���u���Noneu���linenou���stacku���curindexu���curframeu ���tb_linenou���clear(���u���self(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���forget����s ���� u ���Pdb.forgetc�������������C���s����|��j�����|��j�|�|���\�|��_�|��_�x;�|�re�t�|�j�j�|�j���}�|�|��j�|�j�<|�j �}�q+�W|��j�|��j�d�|��_ �|��j �j�|��_�|��j ����S(���Ni����(���u���forgetu ���get_stacku���stacku���curindexu���lasti2linenou���tb_frameu���f_codeu���tb_lastiu ���tb_linenou���tb_nextu���curframeu���f_localsu���curframe_localsu���execRcLines(���u���selfu���fu���tbu���lineno(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���setup����s���� u ���Pdb.setupc�������������C���s����|��j��s �d��S|��j��}�|�j����g��|��_��x]�|�r��|�j����j����}�|�r,�|�d�d�k�r,�|��j�|���r��|��j��t�|���7_��d�Sq,�q,�Wd��S(���Ni����u���#T(���u���rcLinesu���reverseu���popu���stripu���onecmdu���reversedu���True(���u���selfu���rcLinesu���line(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���execRcLines����s���� u���Pdb.execRcLinesc�������������C���s@���|��j��r �d�S|��j�|���r<�|��j�d���|��j�|�d���n��d�S(���un���This method is called when there is the remote possibility that we ever need to stop in this function.Nu���--Call--(���u���_wait_for_mainpyfileu ���stop_hereu���messageu���interactionu���None(���u���selfu���frameu ���argument_list(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���user_call����s ���� u ���Pdb.user_callc�������������C���sl���|��j��rF�|��j�|��j�|�j�j���k�s6�|�j�d�k�r:�d�Sd�|��_��n��|��j�|���rh�|��j�|�d���n��d�S(���u;���This function is called when we stop or break at this line.i����NF( ���u���_wait_for_mainpyfileu ���mainpyfileu���canonicu���f_codeu���co_filenameu���f_linenou���Falseu���bp_commandsu���interactionu���None(���u���selfu���frame(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���user_line��s���� u ���Pdb.user_linec�������������C���s����t��|��d�d���r��|��j�|��j�k�r��|��j�}�d�|��_�|��j�}�|��j�|�d���x"�|��j�|�D]�}�|��j�|���q]�W|�|��_�|��j�|�s��|��j �|��j �|��j���n��|��j�|�r��|��j ����n��|��j����d�Sd�S(���u����Call every command that was set for the current active breakpoint (if there is one). Returns True if the normal interaction function must be called, False otherwise.u ���currentbpi����Ni���F(���u���getattru���Falseu ���currentbpu���commandsu���lastcmdu���setupu���Noneu���onecmdu���commands_silentu���print_stack_entryu���stacku���curindexu���commands_dopromptu���_cmdloopu���forget(���u���selfu���frameu ���currentbpu���lastcmd_backu���line(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���bp_commands��s ���� u���Pdb.bp_commandsc�������������C���s;���|��j��r �d�S|�|�j�d�<|��j�d���|��j�|�d���d�S(���u7���This function is called when a return trap is set here.Nu ���__return__u ���--Return--(���u���_wait_for_mainpyfileu���f_localsu���messageu���interactionu���None(���u���selfu���frameu���return_value(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���user_return$��s ���� u���Pdb.user_returnc�������������C���sf���|��j��r �d�S|�\�}�}�}�|�|�f�|�j�d�<|��j�t�j�|�|���d�j������|��j�|�|���d�S(���uo���This function is called if an exception occurs, but only if we are to stop at or just below this level.Nu ���__exception__i���i����(���u���_wait_for_mainpyfileu���f_localsu���messageu ���tracebacku���format_exception_onlyu���stripu���interaction(���u���selfu���frameu���exc_infou���exc_typeu ���exc_valueu ���exc_traceback(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���user_exception,��s���� u���Pdb.user_exceptionc�������������C���sM���xF�y!�d�|��_�|��j����d�|��_�PWq�t�k �rE�|��j�d���Yq�Xq�d��S(���Nu���--KeyboardInterrupt--TF(���u���Trueu���allow_kbdintu���cmdloopu���Falseu���KeyboardInterruptu���message(���u���self(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_cmdloop8��s���� u���Pdb._cmdloopc�������������C���s����|��j��j�|��j���}�|�r��xk�|�j����D]Z�\�}�}�|��j�|���}�|�|�k �r(�|�|�k�r(�|�|�|�<|��j�d�|�|�|�f���q(�q(�Wn��d��S(���Nu���display %s: %r [old: %r](���u ���displayingu���getu���curframeu���itemsu���_getval_exceptu���message(���u���selfu ���displayingu���expru���oldvalueu���newvalue(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���preloopE��s���� u���Pdb.preloopc�������������C���sO���|��j��|�|���r �|��j����d��S|��j�|��j�|��j���|��j����|��j����d��S(���N(���u���setupu���forgetu���print_stack_entryu���stacku���curindexu���_cmdloop(���u���selfu���frameu ���traceback(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���interactionR��s���� u���Pdb.interactionc�������������C���s&���|�d�k �r"�|��j�t�|�����n��d�S(���u{���Custom displayhook for the exec in default(), which prevents assignment of the _ variable in the builtins. N(���u���Noneu���messageu���repr(���u���selfu���obj(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���displayhook\��s����u���Pdb.displayhookc������� ������C���s��|�d��d���d�k�r)�|�d�d����}�n��|��j��}�|��j�j�}�y��t�|�d�d�d���}�t�j�}�t�j�}�t�j�}�z8�|��j�t�_�|��j�t�_�|��j�t�_�t�|�|�|���Wd��|�t�_�|�t�_�|�t�_�XWn>�t�j ����d��d���}�|��j �t�j�|����d�j ������Yn�Xd��S(���Ni���u���!u��� u���<stdin>u���singlei���i����(���u���curframe_localsu���curframeu ���f_globalsu���compileu���sysu���stdoutu���stdinu���displayhooku���execu���exc_infou���erroru ���tracebacku���format_exception_onlyu���strip( ���u���selfu���lineu���localsu���globalsu���codeu���save_stdoutu ���save_stdinu���save_displayhooku���exc_info(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���defaultd��s(����� u���Pdb.defaultc�������������C���s4��|�j�����s�|�S|�j����}�x��|�d�|��j�k�r��|��j�|�d�}�d�}�x>�|�d�d���D],�}�|�j�d�t�|���|���}�|�d�7}�qZ�W|�j�d�d�j�|�d�d�������}�|�j����}�q�W|�d�d�k�r0|�j�d���}�|�d�k�r0|�|�d �d���j����}�|��j�j �|���|�d�|���j ����}�q0n��|�S( ���u*���Handle alias expansion and ';;' separator.i����i���Nu���%u���%*u��� u���aliasu���;;i���(���u���stripu���splitu���aliasesu���replaceu���stru���joinu���findu���lstripu���cmdqueueu���appendu���rstrip(���u���selfu���lineu���argsu���iiu���tmpArgu���markeru���next(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���precmdz��s&���� %u ���Pdb.precmdc�������������C���s-���|��j��s�t�j�j�|��|���S|��j�|���Sd�S(���u����Interpret the argument as though it had been typed in response to the prompt. Checks whether this line is typed at the normal prompt or in a breakpoint command list definition. N(���u���commands_definingu���cmdu���Cmdu���onecmdu���handle_command_def(���u���selfu���line(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���onecmd���s���� u ���Pdb.onecmdc�������������C���s����|��j��|���\�}�}�}�|�s"�d�S|�d�k�rB�d�|��j�|��j�<d�S|�d�k�r[�g��|��_�d�S|��j�|��j�}�|�r��|�j�|�d�|���n �|�j�|���y�t�|��d�|���}�Wn�t�k �r��|��j �}�Yn�X|�j �|��j�k�r��d�|��j �|��j�<g��|��_�d�Sd�S( ���u8���Handles one command line during command list definition.Nu���silentu���endi���u��� u���do_TF(���u ���parselineu���Trueu���commands_silentu ���commands_bnumu���cmdqueueu���commandsu���appendu���getattru���AttributeErroru���defaultu���__name__u���commands_resumingu���Falseu���commands_doprompt(���u���selfu���lineu���cmdu���argu���cmdlistu���func(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���handle_command_def���s,���� u���Pdb.handle_command_defc�������������C���s���t��|�d�|��j��d��S(���Nu���file(���u���printu���stdout(���u���selfu���msg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���message���s����u���Pdb.messagec�������������C���s���t��d�|�d�|��j��d��S(���Nu���***u���file(���u���printu���stdout(���u���selfu���msg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���error���s����u ���Pdb.errorc���������� ���C���s����|�j�����j�d���r�g��Sy�|��j�|�|�|�|���}�Wn�t�k �rO�g��}�Yn�Xt�j�|�d���}�xo�|�D]g�}�t�j�j�|���r��|�j�|�d���qj�t�j�j �|���rj�|�j ����j�d���rj�|�j�|�d���qj�qj�W|�S( ���Nu���:u���,u���*u���/u���.pyu���.pyw(���u���:u���,(���u���.pyu���.pyw(���u���stripu���endswithu���_complete_expressionu ���Exceptionu���globu���osu���pathu���isdiru���appendu���isfileu���lower(���u���selfu���textu���lineu���begidxu���endidxu���retu���globsu���fn(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_complete_location���s���� 'u���Pdb._complete_locationc����������������s#������f�d�d����t��t�j�j���D��S(���Nc����������������sC���g��|��]9�\�}�}�|�d��k �r�t�|���j������r�t�|�����q�S(���N(���u���Noneu���stru ���startswith(���u���.0u���iu���bp(���u���text(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���<listcomp>���s��� � u*���Pdb._complete_bpnumber.<locals>.<listcomp>(���u ���enumerateu���bdbu ���Breakpointu ���bpbynumber(���u���selfu���textu���lineu���begidxu���endidx(����(���u���textu(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_complete_bpnumber���s����u���Pdb._complete_bpnumberc����������������s��|��j��s �g��S|��j��j�j����}�|�j�|��j���d���k�r����j�d������y<�|����d�}�x'����d�d���D]�}�t�|�|���}�ql�WWn�t�t�f�k �r��g��SYn�Xd�j ����d��d�����d��������f�d�d����t �|���D��S��f�d�d����|�j����D��Sd��S( ���Nu���.i����i���c����������������s-���g��|��]#�}�|�j�����d���r���|���q�S(���i���i����(���u ���startswith(���u���.0u���n(���u���dottedu���prefix(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���<listcomp>���s��� �u,���Pdb._complete_expression.<locals>.<listcomp>c����������������s%���g��|��]�}�|�j�������r�|���q�S(����(���u ���startswith(���u���.0u���n(���u���text(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���<listcomp>���s��� �i����i����(���u���curframeu ���f_globalsu���copyu���updateu���curframe_localsu���splitu���getattru���KeyErroru���AttributeErroru���joinu���diru���keys(���u���selfu���textu���lineu���begidxu���endidxu���nsu���obju���part(����(���u���dottedu���prefixu���textu(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_complete_expression���s���� u���Pdb._complete_expressionc�������������C���sz��|�s�t��t�j�j���d�}�n,�y�t�|���}�Wn�|��j�d���d�SYn�X|�|��_�|�|��j�k�r��|��j�|�|��j�|�|��j �|�f�}�n�d�}�g��|��j�|�<d�|��j�|�<d �|��j �|�<|��j �}�d�|��_ �d�|��_�z��y�|��j����Wny�t�k �r^|�r/|�d�|��j�|�<|�d�|��j�|�<|�d�|��j �|�<n�|��j�|�=|��j�|�=|��j �|�=|��j�d���Yn�XWd�d �|��_�|�|��_ �Xd�S( ���u4��commands [bpnumber] (com) ... (com) end (Pdb) Specify a list of commands for breakpoint number bpnumber. The commands themselves are entered on the following lines. Type a line containing just 'end' to terminate the commands. The commands are executed when the breakpoint is hit. To remove all commands from a breakpoint, type commands and follow it immediately with end; that is, give no commands. With no bpnumber argument, commands refers to the last breakpoint set. You can use breakpoint commands to start your program up again. Simply use the continue command, or step, or any other command that resumes execution. Specifying any command resuming execution (currently continue, step, next, return, jump, quit and their abbreviations) terminates the command list (as if that command was immediately followed by end). This is because any time you resume execution (even with a simple next or step), you may encounter another breakpoint -- which could have its own command list, leading to ambiguities about which list to execute. If you use the 'silent' command in the command list, the usual message about stopping at a breakpoint is not printed. This may be desirable for breakpoints that are to print a specific message and then continue. If none of the other commands print anything, you will see no sign that the breakpoint was reached. i���u.���Usage: commands [bnum] ... endNu���(com) i����i���u1���command definition aborted, old commands restoredTF(���u���lenu���bdbu ���Breakpointu ���bpbynumberu���intu���erroru ���commands_bnumu���commandsu���commands_dopromptu���commands_silentu���Noneu���Trueu���Falseu���promptu���commands_definingu���cmdloopu���KeyboardInterrupt(���u���selfu���argu���bnumu���old_command_defsu���prompt_back(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_commands���s@����% u���Pdb.do_commandsi����c�������������C���s��|�sV�|��j��rR�|��j�d���x3�t�j�j�D]"�}�|�r)�|��j�|�j������q)�q)�Wn��d�Sd�}�d�}�d�}�|�j�d���}�|�d�k�r��|�|�d�d���j����}�|�d�|���j ����}�n��|�j �d���}�d�} �|�d�k�rt|�d�|���j ����}�|��j�|���} �| �s|��j�d�|���d�S| �}�|�|�d�d���j����}�y�t �|���}�Wq\t�k �rp|��j�d�|���d�SYq\Xn��y�t �|���}�Wn��t�k �r[y�t�|�|��j�j�|��j���}�Wn�|�}�Yn�XyC�t�|�d ���r�|�j�}�n��|�j�}�|�j�} �|�j�}�|�j�}�WnM�|��j�|���\�} �}�}�| �s@|��j�d �|���d�S| �} �t �|���}�Yn�XYn�X|�sq|��j����}�n��|��j�|�|���}�|�r�|��j�|�|�|�|�| ���}�|�r�|��j�|�d�|��j��q�|��j�|�|���d �}�|��j�d�|�j�|�j �|�j!�f���n��d�S(���u���b(reak) [ ([filename:]lineno | function) [, condition] ] Without argument, list all breaks. With a line number argument, set a break at this line in the current file. With a function name, set a break at the first executable line of that function. If a second argument is present, it is a string specifying an expression which must evaluate to true before the breakpoint is honored. The line number may be prefixed with a filename and a colon, to specify a breakpoint in another file (probably one that hasn't been loaded yet). The file is searched for on sys.path; the .py suffix may be omitted. u!���Num Type Disp Enb WhereNu���,i����i���u���:u���%r not found from sys.pathu���Bad lineno: %su���__func__uJ���The specified object %r is not a function or was not found along sys.path.u���fileu���Breakpoint %d at %s:%di����("���u���breaksu���messageu���bdbu ���Breakpointu ���bpbynumberu���bpformatu���Noneu���findu���lstripu���rstripu���rfindu���lookupmoduleu���erroru���intu ���ValueErroru���evalu���curframeu ���f_globalsu���curframe_localsu���hasattru���__func__u���__code__u���co_nameu���co_firstlinenou���co_filenameu���lineinfou���defaultFileu ���checklineu ���set_breaku���stdoutu ���get_breaksu���numberu���fileu���line(���u���selfu���argu ���temporaryu���bpu���filenameu���linenou���condu���commau���colonu���funcnameu���fu���funcu���codeu���oku���lnu���lineu���err(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_breakM��s~���� u���Pdb.do_breakc�������������C���s4���|��j��j�j�}�|�d�k�r0�|��j�r0�|��j�}�n��|�S(���u���Produce a reasonable default.u���<string>(���u���curframeu���f_codeu���co_filenameu ���mainpyfile(���u���selfu���filename(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���defaultFile���s����u���Pdb.defaultFilec�������������C���s���|��j��|�d���d�S(���u����tbreak [ ([filename:]lineno | function) [, condition] ] Same arguments as break, but sets a temporary breakpoint: it is automatically deleted when first hit. i���N(���u���do_break(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_tbreak���s����u ���Pdb.do_tbreakc������� ������C���s"��d�}�|�j�d���}�t�|���d�k�r:�|�d�j����}�n)�t�|���d�k�r_�|�d�j����}�n�|�S|�d�k�rs�|�S|�j�d���}�|�d�d�k�r��|�d�=t�|���d�k�r��|�Sn��|��j����}�t�|���d�k�r��|�d�}�n,�|��j�|�d���}�|�r��|�}�n��|�d�}�t�|�|���} �| �p!|�S( ���Nu���'i���i����i���u����u���.u���self(���NNN(���u���Noneu���splitu���lenu���stripu���defaultFileu���lookupmoduleu ���find_function( ���u���selfu ���identifieru���failedu���idstringu���idu���partsu���fnameu���itemu���fu���answer(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���lineinfo���s.����� u���Pdb.lineinfoc�������������C���s����t��|��d���r�|��j�j�n�d�}�t�j�|�|�|���}�|�sM�|��j�d���d�S|�j����}�|�s��|�d�d�k�s��|�d�d���d�k�s��|�d�d���d�k�r��|��j�d ���d�S|�S( ���u����Check whether specified line seems to be executable. Return `lineno` if it is, 0 if not (e.g. a docstring, comment, blank line or EOF). Warning: testing is not comprehensive. u���curframeu���End of filei����u���#Ni���u���"""u���'''u���Blank or comment( ���u���hasattru���curframeu ���f_globalsu���Noneu ���linecacheu���getlineu���messageu���stripu���error(���u���selfu���filenameu���linenou���globsu���line(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���checkline���s����! , u ���Pdb.checklinec�������������C���s����|�j�����}�xq�|�D]i�}�y�|��j�|���}�Wn2�t�k �r`�}�z�|��j�|���WYd�d�}�~�Xq�X|�j����|��j�d�|���q�Wd�S(���u����enable bpnumber [bpnumber ...] Enables the breakpoints given as a space separated list of breakpoint numbers. Nu ���Enabled %s(���u���splitu���get_bpbynumberu ���ValueErroru���erroru���enableu���message(���u���selfu���argu���argsu���iu���bpu���err(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_enable���s���� u ���Pdb.do_enablec�������������C���s����|�j�����}�xq�|�D]i�}�y�|��j�|���}�Wn2�t�k �r`�}�z�|��j�|���WYd�d�}�~�Xq�X|�j����|��j�d�|���q�Wd�S(���uN��disable bpnumber [bpnumber ...] Disables the breakpoints given as a space separated list of breakpoint numbers. Disabling a breakpoint means it cannot cause the program to stop execution, but unlike clearing a breakpoint, it remains in the list of breakpoints and can be (re-)enabled. Nu���Disabled %s(���u���splitu���get_bpbynumberu ���ValueErroru���erroru���disableu���message(���u���selfu���argu���argsu���iu���bpu���err(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_disable��s���� u���Pdb.do_disablec�������������C���s����|�j��d�d���}�y�|�d�}�Wn�t�k �r:�d�}�Yn�Xy�|��j�|�d�j������}�WnP�t�k �ry�|��j�d���Ynl�t�k �r��}�z�|��j�|���WYd�d�}�~�Xn;�X|�|�_�|�s��|��j�d�|�j ���n�|��j�d�|�j ���d�S(���u#��condition bpnumber [condition] Set a new condition for the breakpoint, an expression which must evaluate to true before the breakpoint is honored. If condition is absent, any existing condition is removed; i.e., the breakpoint is made unconditional. u��� i���i����u���Breakpoint number expectedNu#���Breakpoint %d is now unconditional.u$���New condition set for breakpoint %d.( ���u���splitu ���IndexErroru���Noneu���get_bpbynumberu���stripu���erroru ���ValueErroru���condu���messageu���number(���u���selfu���argu���argsu���condu���bpu���err(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_condition��s���� u���Pdb.do_conditionc�������������C���s��|�j�����}�y�t�|�d�j������}�Wn�d�}�Yn�Xy�|��j�|�d�j������}�WnP�t�k �ru�|��j�d���Yn��t�k �r��}�z�|��j�|���WYd�d�}�~�Xnf�X|�|�_�|�d�k�r��|�d�k�r��d�|�}�n�d�}�|��j�d�|�|�j �f���n�|��j�d�|�j ���d�S( ���u���ignore bpnumber [count] Set the ignore count for the given breakpoint number. If count is omitted, the ignore count is set to 0. A breakpoint becomes active when the ignore count is zero. When non-zero, the count is decremented each time the breakpoint is reached and the breakpoint is not disabled and any associated condition evaluates to true. i���i����u���Breakpoint number expectedNu���%d crossingsu ���1 crossingu%���Will ignore next %s of breakpoint %d.u-���Will stop next time breakpoint %d is reached.( ���u���splitu���intu���stripu���get_bpbynumberu ���IndexErroru���erroru ���ValueErroru���ignoreu���messageu���number(���u���selfu���argu���argsu���countu���bpu���erru���countstr(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_ignore5��s(���� u ���Pdb.do_ignorec������� ���!���C���s���|�s��y�t��d���}�Wn�t�k �r0�d�}�Yn�X|�j����j����}�|�d�k�r��d�d����t�j�j�D��}�|��j����x"�|�D]�}�|��j�d�|���qy�Wn��d�Sd �|�k�ri|�j �d ���}�|�d�|���}�|�|�d �d���}�y�t �|���}�Wn�t�k �rd�|�}�Yn%�X|��j�|�|���}�|��j �|�|���}�|�rC|��j�|���n"�x�|�D]�}�|��j�d�|���qJWd�S|�j����} �xt�| �D]l�}�y�|��j�|���}�Wn2�t�k �r�}�z�|��j�|���WYd�d�}�~�Xq|X|��j�|���|��j�d�|���q|Wd�S( ���u=��cl(ear) filename:lineno cl(ear) [bpnumber [bpnumber...]] With a space separated list of breakpoint numbers, clear those breakpoints. Without argument, clear all breaks (but first ask confirmation). With a filename:lineno argument, clear all breaks at that line in that file. u���Clear all breaks? u���nou���yu���yesc�������������S���s���g��|��]�}�|�r�|���q�S(����(����(���u���.0u���bp(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���<listcomp>f��s��� �u ���Pdb.do_clear.<locals>.<listcomp>u ���Deleted %sNu���:i���u���Invalid line number (%s)(���u���yu���yes(���u���inputu���EOFErroru���stripu���loweru���bdbu ���Breakpointu ���bpbynumberu���clear_all_breaksu���messageu���rfindu���intu ���ValueErroru ���get_breaksu���clear_breaku���erroru���splitu���get_bpbynumberu���clear_bpbynumber( ���u���selfu���argu���replyu���bplistu���bpu���iu���filenameu���linenou���erru ���numberlist(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_clearX��sF���� u���Pdb.do_clearc�������������C���s���|��j�����d�S(���u����w(here) Print a stack trace, with the most recent frame at the bottom. An arrow indicates the "current frame", which determines the context of most commands. 'bt' is an alias for this command. N(���u���print_stack_trace(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_where���s����u���Pdb.do_wherec�������������C���sS���|�|��_��|��j�|��j��d�|��_�|��j�j�|��_�|��j�|��j�|��j����d��|��_�d��S(���Ni����(���u���curindexu���stacku���curframeu���f_localsu���curframe_localsu���print_stack_entryu���Noneu���lineno(���u���selfu���number(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���_select_frame���s ���� u���Pdb._select_framec�������������C���s����|��j��d�k�r �|��j�d���d�Sy�t�|�p/�d���}�Wn'�t�k �r_�|��j�d�|���d�SYn�X|�d�k��ru�d�}�n�t�d�|��j��|���}�|��j�|���d�S(���u����u(p) [count] Move the current frame count (default one) levels up in the stack trace (to an older frame). i����u���Oldest frameNi���u���Invalid frame count (%s)(���u���curindexu���erroru���intu ���ValueErroru���maxu ���_select_frame(���u���selfu���argu���countu���newframe(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_up���s���� u ���Pdb.do_upc�������������C���s����|��j��d�t�|��j���k�r-�|��j�d���d�Sy�t�|�p<�d���}�Wn'�t�k �rl�|��j�d�|���d�SYn�X|�d�k��r��t�|��j���d�}�n#�t�t�|��j���d�|��j��|���}�|��j�|���d�S(���u����d(own) [count] Move the current frame count (default one) levels down in the stack trace (to a newer frame). i���u���Newest frameNu���Invalid frame count (%s)i����(���u���curindexu���lenu���stacku���erroru���intu ���ValueErroru���minu ���_select_frame(���u���selfu���argu���countu���newframe(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_down���s���� #u���Pdb.do_downc�������������C���s����|�rf�y�t��|���}�Wn'�t�k �r?�|��j�d�|���d�SYn�X|�|��j�j�k�rl�|��j�d���d�Sn�d�}�|��j�|��j�|���d�S(���uN��unt(il) [lineno] Without argument, continue execution until the line with a number greater than the current one is reached. With a line number, continue execution until a line with a number greater or equal to that is reached. In both cases, also stop when the current frame returns. u���Error in argument: %rNu7���"until" line number is smaller than current line numberi���(���u���intu ���ValueErroru���erroru���curframeu���f_linenou���Noneu ���set_until(���u���selfu���argu���lineno(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_until���s���� u���Pdb.do_untilc�������������C���s���|��j�����d�S(���u����s(tep) Execute the current line, stop at the first possible occasion (either in a function that is called or in the current function). i���(���u���set_step(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_step���s���� u���Pdb.do_stepc�������������C���s���|��j��|��j���d�S(���ux���n(ext) Continue execution until the next line in the current function is reached or it returns. i���(���u���set_nextu���curframe(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_next���s����u���Pdb.do_nextc�������������C���sW���|�rM�d�d�l��}�t�j�d�d���}�|�j�|���t�_�|�t�j�d�d���<n��t���d�S(���u��run [args...] Restart the debugged python program. If a string is supplied it is split with "shlex", and the result is used as the new sys.argv. History, breakpoints, actions and debugger options are preserved. "restart" is an alias for "run". i����Ni���(���u���shlexu���sysu���argvu���splitu���Restart(���u���selfu���argu���shlexu���argv0(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_run���s����u ���Pdb.do_runc�������������C���s���|��j��|��j���d�S(���uP���r(eturn) Continue execution until the current function returns. i���(���u ���set_returnu���curframe(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_return��s����u ���Pdb.do_returnc�������������C���sN���|��j��s@�y�t�j�t�j�|��j���|��_�Wq@�t�k �r<�Yq@�Xn��|��j����d�S(���u]���c(ont(inue)) Continue execution, only stop when a breakpoint is encountered. i���(���u���nosigintu���signalu���SIGINTu���sigint_handleru���_previous_sigint_handleru ���ValueErroru���set_continue(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_continue ��s���� u���Pdb.do_continuec�������������C���s����|��j��d�t�|��j���k�r-�|��j�d���d�Sy�t�|���}�Wn�t�k �r^�|��j�d���Yn��XyK�|�|��j�_�|��j�|��j��d�|�f�|��j�|��j��<|��j�|��j�|��j����Wn6�t�k �r��}�z�|��j�d�|���WYd�d�}�~�Xn�Xd�S(���u���j(ump) lineno Set the next line that will be executed. Only available in the bottom-most frame. This lets you jump back and execute code again, or jump forward to skip code that you don't want to run. It should be noted that not all jumps are allowed -- for instance it is not possible to jump into the middle of a for loop or out of a finally clause. i���u)���You can only jump within the bottom frameNu)���The 'jump' command requires a line numberi����u���Jump failed: %s( ���u���curindexu���lenu���stacku���erroru���intu ���ValueErroru���curframeu���f_linenou���print_stack_entry(���u���selfu���argu���e(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_jump��s���� $u���Pdb.do_jumpc�������������C���s����t��j�d���|��j�j�}�|��j�}�t�|��j�|��j�|��j ���}�d�|��j �j����|�_ �|��j�d���t��j �|�j�|�|�|�f���|��j�d���t��j�|��j���|�j�|��_�d�S(���u����debug code Enter a recursive debugger that steps through the code argument (which is an arbitrary expression or statement to be executed in the current environment). u���(%s) u���ENTERING RECURSIVE DEBUGGERu���LEAVING RECURSIVE DEBUGGERN(���u���sysu���settraceu���Noneu���curframeu ���f_globalsu���curframe_localsu���Pdbu���completekeyu���stdinu���stdoutu���promptu���stripu���messageu���call_tracingu���runu���trace_dispatchu���lastcmd(���u���selfu���argu���globalsu���localsu���p(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_debug8��s���� u���Pdb.do_debugc�������������C���s���d�|��_�|��j����d�S(���u[���q(uit) exit Quit from the debugger. The program being executed is aborted. i���T(���u���Trueu���_user_requested_quitu���set_quit(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_quitK��s���� u���Pdb.do_quitc�������������C���s$���|��j��d���d�|��_�|��j����d�S(���u=���EOF Handles the receipt of EOF as a command. u����i���T(���u���messageu���Trueu���_user_requested_quitu���set_quit(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_EOFV��s���� u ���Pdb.do_EOFc�������������C���s����|��j��j�}�|��j�}�|�j�}�|�j�d�@r8�|�d�}�n��|�j�d�@rR�|�d�}�n��x_�t�|���D]Q�}�|�j�|�}�|�|�k�r��|��j�d�|�|�|�f���q_�|��j�d�|�f���q_�Wd�S(���uH���a(rgs) Print the argument list of the current function. i���i���i���u���%s = %ru���%s = *** undefined ***N(���u���curframeu���f_codeu���curframe_localsu���co_argcountu���co_flagsu���rangeu���co_varnamesu���message(���u���selfu���argu���cou���dictu���nu���iu���name(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_args_��s���� � � u���Pdb.do_argsc�������������C���s=���d�|��j��k�r,�|��j�t�|��j��d�����n �|��j�d���d�S(���uQ���retval Print the return value for the last return of a function. u ���__return__u���Not yet returned!N(���u���curframe_localsu���messageu���repru���error(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_retvalp��s����u ���Pdb.do_retvalc���������� ���C���se���y�t��|�|��j�j�|��j���SWnA�t�j����d��d���}�|��j�t�j�|����d�j ���������Yn�Xd��S(���Ni���i���i����( ���u���evalu���curframeu ���f_globalsu���curframe_localsu���sysu���exc_infou���erroru ���tracebacku���format_exception_onlyu���strip(���u���selfu���argu���exc_info(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_getvalz��s���� u���Pdb._getvalc���������� ���C���s����y?�|�d��k�r(�t�|�|��j�j�|��j���St�|�|�j�|�j���SWnE�t�j����d��d���}�t�j �|����d�j ����}�t�d�|���SYn�Xd��S(���Ni���i���u���** raised %s **i����(���u���Noneu���evalu���curframeu ���f_globalsu���curframe_localsu���f_localsu���sysu���exc_infou ���tracebacku���format_exception_onlyu���stripu���_rstr(���u���selfu���argu���frameu���exc_infou���err(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_getval_except���s����u���Pdb._getval_exceptc���������� ���C���s/���y �|��j��t�|��j�|�������Wn�Yn�Xd�S(���uF���p(rint) expression Print the value of the expression. N(���u���messageu���repru���_getval(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_p���s���� u���Pdb.do_pc���������� ���C���s2���y#�|��j��t�j�|��j�|�������Wn�Yn�Xd�S(���uH���pp expression Pretty-print the value of the expression. N(���u���messageu���pprintu���pformatu���_getval(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_pp���s����#u ���Pdb.do_ppc�������������C���s���d�|��_��d�}�|�r��|�d�k�r��y��d�|�k�r��|�j�d���\�}�}�t�|�j������}�t�|�j������}�|�|�k��r��|�|�}�q��n%�t�|�j������}�t�d�|�d���}�Wqt�k �r��|��j�d�|���d�SYqXnD�|��j�d�k�s��|�d�k�rt�d�|��j �j �d���}�n �|��j�d�}�|�d�k�r5|�d�}�n��|��j �j�j�}�|��j �|���}�y}�t�j�|�|��j �j���}�|��j�|�|�d�|���|�|�|��j ���t�|�t�|�����|��_�t�|���|�k��r�|��j�d ���n��Wn�t�k �r�Yn�Xd�S( ���u���l(ist) [first [,last] | .] List source code for the current file. Without arguments, list 11 lines around the current line or continue the previous listing. With . as argument, list 11 lines around the current line. With one argument, list 11 lines starting at that line. With two arguments, list the given range; if the second argument is less than the first, it is a count. The current line in the current frame is indicated by "->". If an exception is being debugged, the line where the exception was originally raised or propagated is indicated by ">>", if it differs from the current line. u���listu���.u���,i���i���u���Error in argument: %rNi ���u���[EOF](���u���lastcmdu���Noneu���splitu���intu���stripu���maxu ���ValueErroru���erroru���linenou���curframeu���f_linenou���f_codeu���co_filenameu���get_file_breaksu ���linecacheu���getlinesu ���f_globalsu���_print_linesu���minu���lenu���messageu���KeyboardInterrupt(���u���selfu���argu���lastu���firstu���filenameu ���breaklistu���lines(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_list���s>���� u���Pdb.do_listc�������������C���s����|��j��j�j�}�|��j�|���}�y�t�|��j����\�}�}�Wn6�t�k �ro�}�z�|��j�|���d�SWYd�d�}�~�Xn�X|��j�|�|�|�|��j����d�S(���u\���longlist | ll List the whole source code for the current function or frame. N(���u���curframeu���f_codeu���co_filenameu���get_file_breaksu���getsourcelinesu���IOErroru���erroru���_print_lines(���u���selfu���argu���filenameu ���breaklistu���linesu���linenou���err(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_longlist���s���� u���Pdb.do_longlistc�������������C���s����y�|��j��|���}�Wn�d�SYn�Xy�t�|���\�}�}�Wn<�t�t�f�k �rv�}�z�|��j�|���d�SWYd�d�}�~�Xn�X|��j�|�|���d�S(���u^���source expression Try to get source code for the given object and display it. N(���u���_getvalu���getsourcelinesu���IOErroru ���TypeErroru���erroru���_print_lines(���u���selfu���argu���obju���linesu���linenou���err(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_source���s���� u ���Pdb.do_sourcec������� ������C���s����|�r'�|�j��}�|��j�j�|�d ���}�n �d�}�}�x��t�|�|���D]��\�}�}�t�|���j�d���} �t�| ���d�k��r��| �d�7} �n��|�|�k�r��| �d�7} �n �| �d�7} �|�|�k�r��| �d�7} �n�|�|�k�r��| �d�7} �n��|��j�| �d�|�j������qA�Wd �S(���u���Print a range of lines.i���i���i���u��� u���Bu���->u���>>u��� Ni����i����( ���u���f_linenou ���tb_linenou���getu ���enumerateu���stru���rjustu���lenu���messageu���rstrip( ���u���selfu���linesu���startu���breaksu���frameu���current_linenou ���exc_linenou���linenou���lineu���s(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���_print_lines���s ���� u���Pdb._print_linesc�������������C���s����y�|��j��|���}�Wn�d�SYn�Xd�}�y �|�j�}�Wn�t�k �rI�Yn�X|�rh�|��j�d�|�j���d�Sy�|�j�j�}�Wn�t�k �r��Yn�X|�r��|��j�d�|�j���d�S|�j�t�k�r��|��j�d�|�j �|�j �f���d�S|��j�t�|�����d�S(���u;���whatis arg Print the type of the argument. Nu���Function %su ���Method %su���Class %s.%s(���u���_getvalu���Noneu���__code__u ���Exceptionu���messageu���co_nameu���__func__u ���__class__u���typeu ���__module__u���__name__(���u���selfu���argu���valueu���code(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_whatis��s.���� u ���Pdb.do_whatisc�������������C���s����|�sP�|��j��d���x|�|��j�j�|��j�i����j����D]�}�|��j��d�|���q2�WnB�|��j�|���}�|�|��j�j�|��j�i����|�<|��j��d�|�|�f���d�S(���u����display [expression] Display the value of the expression if it changed, each time execution stops in the current frame. Without expression, list all display expressions for the current frame. u���Currently displaying:u���%s: %ru���display %s: %rN(���u���messageu ���displayingu���getu���curframeu���itemsu���_getval_exceptu ���setdefault(���u���selfu���argu���itemu���val(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_display/��s���� %u���Pdb.do_displayc�������������C���sf���|�rL�y�|��j��j�|��j�i����|�=Wqb�t�k �rH�|��j�d�|���Yqb�Xn�|��j��j�|��j�d���d�S(���u����undisplay [expression] Do not display the expression any more in the current frame. Without expression, clear all display expressions for the current frame. u���not displaying %sN(���u ���displayingu���getu���curframeu���KeyErroru���erroru���popu���None(���u���selfu���arg(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_undisplayB��s���� u���Pdb.do_undisplayc����������������s)������f�d�d����|��j��j�|��j�i����D��S(���Nc����������������s%���g��|��]�}�|�j�������r�|���q�S(����(���u ���startswith(���u���.0u���e(���u���text(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���<listcomp>R��s��� �u*���Pdb.complete_undisplay.<locals>.<listcomp>(���u ���displayingu���getu���curframe(���u���selfu���textu���lineu���begidxu���endidx(����(���u���textu(���/opt/alt/python33/lib64/python3.3/pdb.pyu���complete_undisplayQ��s����u���Pdb.complete_undisplayc�������������C���s9���|��j��j�j����}�|�j�|��j���t�j�d�d�|��d�S(���u����interact Start an interactive interpreter whose global namespace contains all the (global and local) names found in the current scope. u ���*interactive*u���localN(���u���curframeu ���f_globalsu���copyu���updateu���curframe_localsu���codeu���interact(���u���selfu���argu���ns(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_interactU��s����u���Pdb.do_interactc�������������C���s����|�j�����}�t�|���d�k�rf�t�|��j�j������}�x,�|�D]$�}�|��j�d�|�|��j�|�f���q:�Wd�S|�d�|��j�k�r��t�|���d�k�r��|��j�d�|�d�|��j�|�d�f���n$�d�j�|�d�d�����|��j�|�d�<d�S(���ub��alias [name [command [parameter parameter ...] ]] Create an alias called 'name' that executes 'command'. The command must *not* be enclosed in quotes. Replaceable parameters can be indicated by %1, %2, and so on, while %* is replaced by all the parameters. If no command is given, the current alias for name is shown. If no name is given, all aliases are listed. Aliases may be nested and can contain anything that can be legally typed at the pdb prompt. Note! You *can* override internal pdb commands with aliases! Those internal commands are then hidden until the alias is removed. Aliasing is recursively applied to the first word of the command line; all other words in the line are left alone. As an example, here are two useful aliases (especially when placed in the .pdbrc file): # Print instance variables (usage "pi classInst") alias pi for k in %1.__dict__.keys(): print "%1.",k,"=",%1.__dict__[k] # Print instance variables in self alias ps pi self i����u���%s = %sNi���u��� (���u���splitu���lenu���sortedu���aliasesu���keysu���messageu���join(���u���selfu���argu���argsu���keysu���alias(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_alias_��s���� "%)u���Pdb.do_aliasc�������������C���sJ���|�j�����}�t�|���d�k�r"�d�S|�d�|��j�k�rF�|��j�|�d�=n��d�S(���u9���unalias name Delete the specified alias. i����N(���u���splitu���lenu���aliases(���u���selfu���argu���args(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���do_unalias���s �����u���Pdb.do_unaliasc����������������s������f�d�d����|��j��D��S(���Nc����������������s%���g��|��]�}�|�j�������r�|���q�S(����(���u ���startswith(���u���.0u���a(���u���text(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���<listcomp>���s��� �u(���Pdb.complete_unalias.<locals>.<listcomp>(���u���aliases(���u���selfu���textu���lineu���begidxu���endidx(����(���u���textu(���/opt/alt/python33/lib64/python3.3/pdb.pyu���complete_unalias���s����u���Pdb.complete_unaliasu���do_continueu���do_stepu���do_nextu ���do_returnu���do_quitu���do_jumpc�������������C���s>���y%�x�|��j��D]�}�|��j�|���q �WWn�t�k �r9�Yn�Xd��S(���N(���u���stacku���print_stack_entryu���KeyboardInterrupt(���u���selfu���frame_lineno(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���print_stack_trace���s ���� u���Pdb.print_stack_tracec�������������C���sK���|�\�}�}�|�|��j��k�r$�d�}�n�d�}�|��j�|�|��j�|�|�����d��S(���Nu���> u��� (���u���curframeu���messageu���format_stack_entry(���u���selfu���frame_linenou ���prompt_prefixu���frameu���linenou���prefix(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���print_stack_entry���s���� u���Pdb.print_stack_entryc�������������C���s����|�s�t��j�j�|��|���SyJ�y�t�|��d�|���}�|����SWn%�t�k �ra�t�|��d�|���}�Yn�XWn#�t�k �r��|��j�d�|���Yn>�Xt�j�j�d�k�r��|��j�d�|���d�S|��j �|�j �j������d�S(���u����h(elp) Without argument, print the list of available commands. With a command name as argument, print help about that command. "help pdb" shows the full pdb documentation. "help exec" gives help on the ! command. u���help_u���do_u���No help for %ri���uJ���No help for %r; please do not run Python with -OO if you need command helpN(���u���cmdu���Cmdu���do_helpu���getattru���AttributeErroru���erroru���sysu���flagsu���optimizeu���messageu���__doc__u���rstrip(���u���selfu���argu���topicu���command(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���do_help���s���� u���Pdb.do_helpc�������������C���s#���|��j��|��j�j�p�d�j������d�S(���u���(!) statement Execute the (one-line) statement in the context of the current stack frame. The exclamation point can be omitted unless the first word of the statement resembles a debugger command. To assign to a global variable you must always prefix the command with a 'global' command, e.g.: (Pdb) global list_options; list_options = ['-l'] (Pdb) u����N(���u���messageu ���help_execu���__doc__u���strip(���u���self(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���help_exec���s���� u ���Pdb.help_execc�������������C���s���t�����d��S(���N(���u���help(���u���self(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���help_pdb���s����u���Pdb.help_pdbc�������������C���s$��t��j�j�|���r(�t��j�j�|���r(�|�St��j�j�t�j�d�|���}�t��j�j�|���rr�|��j�|���|��j�k�rr�|�St��j�j�|���\�}�}�|�d�k�r��|�d�}�n��t��j�j�|���r��|�Sxd�t�j�D]Y�}�x%�t��j�j �|���r��t��j �|���}�q��Wt��j�j�|�|���}�t��j�j�|���r��|�Sq��Wd�S(���u����Helper function for break/clear parsing -- may be overridden. lookupmodule() translates (possibly incomplete) file or module name into an absolute file name. i����u����u���.pyN(���u���osu���pathu���isabsu���existsu���joinu���sysu���canonicu ���mainpyfileu���splitextu���islinku���readlinku���None(���u���selfu���filenameu���fu���rootu���extu���dirnameu���fullname(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���lookupmodule���s"����$* u���Pdb.lookupmodulec���������� ���C���s����d�d��l��}�|�j�j����|�j�j�i�d�d�6|�d�6t�d�6��d�|��_�|��j�|���|��_�d �|��_ �t�|�d���� �}�d�|�j����|��j�f�}�Wd��QX|��j �|���d��S( ���Ni����u���__main__u���__name__u���__file__u���__builtins__u���rbu���exec(compile(%r, %r, 'exec'))TF(���u���__main__u���__dict__u���clearu���updateu���__builtins__u���Trueu���_wait_for_mainpyfileu���canonicu ���mainpyfileu���Falseu���_user_requested_quitu���openu���readu���run(���u���selfu���filenameu���__main__u���fpu ���statement(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���_runscript���s���� u���Pdb._runscriptNF(x���u���__name__u ���__module__u���__qualname__u���Noneu���Falseu���__init__u���sigint_handleru���resetu���forgetu���setupu���execRcLinesu ���user_callu ���user_lineu���bp_commandsu���user_returnu���user_exceptionu���_cmdloopu���preloopu���interactionu���displayhooku���defaultu���precmdu���onecmdu���handle_command_defu���messageu���erroru���_complete_locationu���_complete_bpnumberu���_complete_expressionu���do_commandsu���complete_commandsu���do_breaku���defaultFileu���do_bu���complete_breaku ���complete_bu ���do_tbreaku���complete_tbreaku���lineinfou ���checklineu ���do_enableu���complete_enableu ���do_disableu���complete_disableu���do_conditionu���complete_conditionu ���do_ignoreu���complete_ignoreu���do_clearu���do_clu���complete_clearu���complete_clu���do_whereu���do_wu���do_btu ���_select_frameu���do_upu���do_uu���do_downu���do_du���do_untilu���do_untu���do_stepu���do_su���do_nextu���do_nu���do_runu ���do_restartu ���do_returnu���do_ru���do_continueu���do_cu���do_contu���do_jumpu���do_ju���do_debugu���complete_debugu���do_quitu���do_qu���do_exitu���do_EOFu���do_argsu���do_au ���do_retvalu���do_rvu���_getvalu���_getval_exceptu���do_pu���do_printu���do_ppu���complete_printu ���complete_pu���complete_ppu���do_listu���do_lu���do_longlistu���do_llu ���do_sourceu���complete_sourceu���_print_linesu ���do_whatisu���complete_whatisu ���do_displayu���complete_displayu���do_undisplayu���complete_undisplayu���do_interactu���do_aliasu ���do_unaliasu���complete_unaliasu���commands_resumingu���print_stack_traceu���line_prefixu���print_stack_entryu���do_helpu���do_hu ���help_execu���help_pdbu���lookupmoduleu ���_runscript(���u ���__locals__(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���Pdb����s����. M]!!. 1! # u���whereu���downu���upu���breaku���tbreaku���clearu���disableu���enableu���ignoreu ���conditionu���commandsu���stepu���nextu���untilu���jumpu���returnu���retvalu���continueu���listu���longlistu���argsu���printu���ppu���whatisu���sourceu���displayu ���undisplayu���interactu���aliasu���unaliasu���debugu���quitu���do_u��� c�������������C���s���t�����j�|��|�|���d��S(���N(���u���Pdbu���run(���u ���statementu���globalsu���locals(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���run��s����c�������������C���s���t�����j�|��|�|���S(���N(���u���Pdbu���runeval(���u ���expressionu���globalsu���locals(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���runeval!��s����c�������������C���s���t��|��|�|���d��S(���N(���u���run(���u ���statementu���globalsu���locals(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���runctx$��s����c��������������O���s���t�����j�|��|����S(���N(���u���Pdbu���runcall(���u���argsu���kwds(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���runcall(��s����c���������������C���s���t�����j�t�j����j���d��S(���N(���u���Pdbu ���set_traceu���sysu ���_getframeu���f_back(����(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu ���set_trace+��s����c�������������C���sa���|��d��k�r�t�j����d�}��n��|��d��k�r:�t�d�����n��t����}�|�j����|�j�d��|����d��S(���Ni���uA���A valid traceback must be passed if no exception is being handled(���u���Noneu���sysu���exc_infou ���ValueErroru���Pdbu���resetu���interaction(���u���tu���p(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���post_mortem0��s���� c���������������C���s���t��t�j���d��S(���N(���u���post_mortemu���sysu���last_traceback(����(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���pm>��s����u���import x; x.main()c���������������C���s���t��t���d��S(���N(���u���runu���TESTCMD(����(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���testF��s����u���testc��������������C���s���d�d��l��}��|��j�t���d��S(���Ni����(���u���pydocu���pageru���__doc__(���u���pydoc(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���helpJ��s����u���usage: pdb.py [-c command] ... pyfile [arg] ... Debug the Python program given by pyfile. Initial commands are read from .pdbrc files in your home directory and in the current directory, if they exist. Commands supplied with -c are executed after commands from .pdbrc files. To let the script run until an exception occurs, use "-c continue". To let the script run up to a given line X in the debugged file, use "-c 'until X'".c�������� ������C���s1��d�d��l��}��|��j��t�j�d�d����d�d�d�g���\�}�}�|�sZ�t�t���t�j�d���n��g��}�xS�|�D]K�\�}�}�|�d�k�r��t�t���t�j����qg�|�d�k�rg�|�j�|���qg�qg�W|�d�}�t�j�j �|���s��t�d �|�d���t�j�d���n��|�t�j�d��d����<t�j�j �|���t�j�d�<t����}�|�j�j �|���x��y(�|�j�|���|�j�rWPn��t�d���Wq:t�k �r�t�d �|�d���t�d�d�j�|�����Yq:t�k �r�t�d�d�d��t�t�j����d���Yq:t�j����t�d���t�d���t�j����d�}�|�j�d��|���t�d�|�d���Yq:Xq:d��S(���Ni����i���u���hc:u���--helpu ���--command=i���u���-hu���-cu ���--commandu���Error:u���does not existu*���The program finished and will be restartedu ���Restartingu���with arguments:u��� u��� u/���The program exited via sys.exit(). Exit status:u���endu2���Uncaught exception. Entering post mortem debuggingu1���Running 'cont' or 'step' will restart the programu#���Post mortem debugger finished. The u��� will be restarted(���u���-hu���--help(���u���-cu ���--command(���u���getoptu���sysu���argvu���printu���_usageu���exitu���appendu���osu���pathu���existsu���dirnameu���Pdbu���rcLinesu���extendu ���_runscriptu���_user_requested_quitu���Restartu���joinu ���SystemExitu���exc_infou ���tracebacku ���print_excu���interactionu���None( ���u���getoptu���optsu���argsu���commandsu���optu���optargu ���mainpyfileu���pdbu���t(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���main[��sP����. u���mainu���__main__(.���u���__doc__u���osu���reu���sysu���cmdu���bdbu���disu���codeu���globu���pprintu���signalu���inspectu ���tracebacku ���linecacheu ���Exceptionu���Restartu���__all__u ���find_functionu���getsourcelinesu���lasti2linenou���stru���_rstru���line_prefixu���Bdbu���Cmdu���Pdbu���Noneu���_help_orderu���_commandu���getattru���stripu ���help_execu���runu���runevalu���runctxu���runcallu ���set_traceu���post_mortemu���pmu���TESTCMDu���testu���helpu���_usageu���mainu���__name__u���pdb(����(����(����u(���/opt/alt/python33/lib64/python3.3/pdb.pyu���<module>A���sh��� ����������� ( 9