diff options
author | Julian Orth <ju.orth@gmail.com> | 2014-03-05 21:40:44 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-27 14:03:35 -0300 |
commit | cb5f1fa51d32912e346b86fb34468ce2a44c616c (patch) | |
tree | f2a34551970f2a6806bd1e89fdb73611f99d1532 /clint.py | |
parent | 67dbb1afda3284ef675f09566935228560cd0a69 (diff) | |
download | rneovim-cb5f1fa51d32912e346b86fb34468ce2a44c616c.tar.gz rneovim-cb5f1fa51d32912e346b86fb34468ce2a44c616c.tar.bz2 rneovim-cb5f1fa51d32912e346b86fb34468ce2a44c616c.zip |
remove unused function
Diffstat (limited to 'clint.py')
-rwxr-xr-x | clint.py | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -3511,23 +3511,6 @@ def _DropCommonSuffixes(filename): return os.path.splitext(filename)[0] -def _IsTestFilename(filename): - """Determines if the given filename has a suffix that identifies it as a test. - - Args: - filename: The input filename. - - Returns: - True if 'filename' looks like a test, False otherwise. - """ - if (filename.endswith('_test.cc') or - filename.endswith('_unittest.cc') or - filename.endswith('_regtest.cc')): - return True - else: - return False - - def _ClassifyInclude(fileinfo, include, is_system): """Figures out what kind of header 'include' is. |