eric6/Debugger/DebuggerInterfacePython.py

changeset 7249
0bf517e60f54
parent 7229
53054eb5b15a
child 7251
bc5b1b00560a
equal deleted inserted replaced
7248:60b48ab891fa 7249:0bf517e60f54
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

eric ide

mercurial