Skip to content
Snippets Groups Projects
Commit db3fe20f authored by scott snyder's avatar scott snyder
Browse files

AthenaCommon: Some fixes for athena.py -s

The exclusion pattern for AthenaCommon was failing if AthenaCommon
was built in a local WorkArea.

sys.maxint doesn't exist in py3 --- change to maxsize.

With py3, we get _trace_include called with some internal bootstrap methods.
We were taking a huge amount of time trying to resolve these with FindFile.
Just ignore them instead.
parent 927a4826
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# File: AthenaCommon/python/Include.py
# Author: Wim Lavrijsen (WLavrijsen@lbl.gov)
......@@ -14,7 +14,6 @@ printfunc = getattr(builtins,'print')
import os, sys, re, fnmatch
from AthenaCommon.Utils.unixtools import FindFile
### data ---------------------------------------------------------------------
__version__ = '1.3.0'
__author__ = 'Wim Lavrijsen (WLavrijsen@lbl.gov)'
......@@ -36,13 +35,14 @@ fidMarker = '%2d'
# do not trace any files that fnmatch these names:
excludeTracePattern = [
'*/GaudiPython/*', '*/GaudiKernel/*', # Gaudi framework files
'*/InstallArea/*/AthenaCommon/*', # Athena framework files
'*/AthenaCommon/*', # Athena framework files
'*/python%d.%d/*' % sys.version_info[:2], # python system
'*/InstallArea/python/*/*Conf.py', # generated conf files
'*/python/*/*Conf.py', # generated conf files
'*/PyUtils/decorator.py', # very verbose
'*/PyUtils/Decorators.py', # ditto
'*/PyUtils/Helper*.py', # ditto
'*/lib/ROOT.py', # ROOT import hook gets executed very many times
'*importlib._bootstrap*',
]
# unless they are explicitly included here:
......@@ -226,6 +226,9 @@ class Include( object ):
# code tracer ---------------------------------------------------------------
def _trace_include( self, frame, event, arg ):
fn = frame.f_code.co_filename
if fn.find ('importlib._bootstrap') >= 0:
return self._trace_include
if not os.path.exists( fn ):
fn = FindFile( basename2( fn ), sys.path, os.R_OK )
......@@ -246,7 +249,7 @@ class Include( object ):
# import is done, and we're back, accept this file from this point on
_filecache[ fn ] = open( fn, 'r' ).readlines() or '\n'
_linecache[ fn ] = sys.maxint, self.fid
_linecache[ fn ] = sys.maxsize, self.fid
self.fid += 1
lno = frame.f_lineno
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment