1365 ("Python2", ClientDefaultCapabilities, py2Exts, |
1365 ("Python2", ClientDefaultCapabilities, py2Exts, |
1366 createDebuggerInterfacePython2) |
1366 createDebuggerInterfacePython2) |
1367 ) |
1367 ) |
1368 |
1368 |
1369 if py3Exts and (Preferences.getDebugger("Python3VirtualEnv") or |
1369 if py3Exts and (Preferences.getDebugger("Python3VirtualEnv") or |
1370 sys.version_info[0] == 3): |
1370 sys.version_info[0] >= 3): |
1371 registryData.append( |
1371 registryData.append( |
1372 ("Python3", ClientDefaultCapabilities, py3Exts, |
1372 ("Python3", ClientDefaultCapabilities, py3Exts, |
1373 createDebuggerInterfacePython3) |
1373 createDebuggerInterfacePython3) |
1374 ) |
1374 ) |
1375 |
1375 |