()
| 86 | _cache_getVersion = None |
| 87 | |
| 88 | def getVersion(): |
| 89 | global _cache_getVersion |
| 90 | if _cache_getVersion is None: |
| 91 | _cache_getVersion = grepValue( |
| 92 | os.path.join(SRCDIR, 'configure'), 'PACKAGE_VERSION') |
| 93 | return _cache_getVersion |
| 94 | |
| 95 | def getVersionMajorMinor(): |
| 96 | return tuple([int(n) for n in getVersion().split('.', 2)]) |
no test coverage detected
searching dependent graphs…