Check if given path ends with a python 3.6+ name.
( path )
| 80 | |
| 81 | |
| 82 | def _EndsWithPython( path ): |
| 83 | """Check if given path ends with a python 3.6+ name.""" |
| 84 | return path and PYTHON_BINARY_REGEX.search( path ) is not None |
| 85 | |
| 86 | |
| 87 | def PathToServerScript(): |
no outgoing calls