Coverage for tvo/utils/dbg.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-01 11:33 +0000

1# -*- coding: utf-8 -*- 

2# Copyright (C) 2019 Machine Learning Group of the University of Oldenburg. 

3# Licensed under the Academic Free License version 3.0 

4 

5from inspect import currentframe, getframeinfo 

6 

7 

8def print_location(): 

9 frameinfo = getframeinfo(currentframe().f_back) 

10 print(frameinfo.filename, frameinfo.function, frameinfo.lineno)