()
| 70 | |
| 71 | |
| 72 | def _PathToPythonUsedDuringBuild(): |
| 73 | from ycmd import utils |
| 74 | |
| 75 | try: |
| 76 | filepath = os.path.join( DIR_OF_YCMD, 'PYTHON_USED_DURING_BUILDING' ) |
| 77 | return utils.ReadFile( filepath ).strip() |
| 78 | except OSError: |
| 79 | return None |
| 80 | |
| 81 | |
| 82 | def _EndsWithPython( path ): |
no outgoing calls