반응형
python -- exception 발생한 file name, line number 찾기
환경 : windows 7 32bit, python 2.7.8
참조 : http://stackoverflow.com/questions/14519177/python-exception-handling-line-number
https://docs.python.org/2/library/sys.html#sys.exc_info
https://docs.python.org/2/library/traceback.html#
try ... except 구문에서 예외 발생한 경우, 해당 파일명과 발생한 line 번호 찾기
import sys try: 3/0 except Exception as e : _, _ , tb = sys.exc_info() # tb -> traceback object print 'file name = ', __file__ print 'error line No = {}'.format(tb.tb_lineno) print e
*** 주위 :
windows 8.0 64bit, python 2.7.5 64bit 환경에서 IDLE 에서는 error 발생 !
( NameError: name '__file__' is not defined )
but, terminal 에서 실행시에는 제대로 실행된다!
( 위의 IDLE 의 경우와 다르게 file 경로는 안나옴)
< 결론 >
__file__ 사용 애메함....
반응형
'python' 카테고리의 다른 글
python -- ffmpeg 이용한 video, audio capture (1) | 2014.09.30 |
---|---|
beautiful Soup, PhantomJS 사용한 javacript web scraping ( pubmed ) (1) | 2014.09.24 |
bioinfomatics -- vienna format 으로 RNA 그리기 (0) | 2014.09.02 |
python -- self, 클래스멤버(변수) , 인스턴스멤버(변수), 생성자, 소멸자 (0) | 2014.08.27 |
python anagram --- timeit 실행시간 확인 (0) | 2014.08.24 |