diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 07:28:37 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 07:28:37 -0400 |
commit | 964668c05af407eb95aad0b15e90b29f0ad0c53c (patch) | |
tree | 4d50baaaab4b61f40559a92fcfd29d7b1d9693ab /coverage/codeunit.py | |
parent | 5ed649e55e14f7c8cd7a693f3d1fff966283c68d (diff) | |
parent | 67ea897f611a86fee7e3846ad3c4bc564cac6264 (diff) | |
download | python-coveragepy-git-964668c05af407eb95aad0b15e90b29f0ad0c53c.tar.gz |
Automated merge with ssh://bitbucket.org/ned/coveragepy
Diffstat (limited to 'coverage/codeunit.py')
-rw-r--r-- | coverage/codeunit.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/coverage/codeunit.py b/coverage/codeunit.py index 55f44a24..1999c50c 100644 --- a/coverage/codeunit.py +++ b/coverage/codeunit.py @@ -115,3 +115,23 @@ class CodeUnit(object): raise CoverageException( "No source for code %r." % self.filename ) + + def should_be_python(self): + """Does it seem like this file should contain Python? + + This is used to decide if a file reported as part of the exection of + a program was really likely to have contained Python in the first + place. + + """ + # Get the file extension. + _, ext = os.path.splitext(self.filename) + + # Anything named *.py* should be Python. + if ext.startswith('.py'): + return True + # A file with no extension should be Python. + if not ext: + return True + # Everything else is probably not Python. + return False |