Print the current Python file error line

Source: Internet
Author: User
In the Python error debugging process sometimes need to print the current Python file error line, below to describe the method:

Import Sys

Try

A = [+]

Print A[3]

Except

S=sys.exc_info ()

Print "Error '%s ' happened on line%d"% (S[1],s[2].tb_lineno)

Print error line for printing execfile:

Try

ExecFile ("tprint.py")

Except Exception, info:

#print Info[1]

Print "Error '%s ' happened on line%d"% (Info[0], info[1][1])

Use reflection mechanism, call function, print the wrong line of callee and error message

Try

Callfunc.callfunc (Myklass,strmethod,params)

Except:

print ' = = = STEP ERROR INFO START '

Import Traceback

Traceback.print_exc ()

print ' = = = STEP ERROR INFO END '

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.