Files
openide/python/python-exec-service/resources/intellij.python.community.execService.xml
T
Ilya.Kazakevichandintellij-monorepo-bot 13045f4379 cleanup [python]: remove deprecated symbols.
If you need venv, use `createVenv(sdk.asBinToExecute()`.

GitOrigin-RevId: d2a2bd6df749ad22bf13496bd11595504a9da5cd
2026-02-04 06:51:26 +00:00

35 lines
1.4 KiB
XML

<idea-plugin visibility="public">
<dependencies>
<module name="intellij.python.community"/>
<module name="intellij.python.community.helpersLocator"/>
</dependencies>
<extensionPoints>
<extensionPoint qualifiedName="Pythonid.execService.targetEnvironmentRequestHandler"
interface="com.intellij.python.community.execService.spi.TargetEnvironmentRequestHandler"
dynamic="true"/>
</extensionPoints>
<extensions defaultExtensionNs="Pythonid">
<execService.targetEnvironmentRequestHandler
implementation="com.intellij.python.community.execService.impl.processLaunchers.DefaultTargetEnvironmentRequestHandler"
order="last"
/>
</extensions>
<extensions defaultExtensionNs="com.intellij">
<registryKey defaultValue="2"
description="How many heavy processes to execute concurrently"
key="python.execService.limit.heavy" restartRequired="true"/>
<registryKey defaultValue="10"
description="How many medium processes to execute concurrently"
key="python.execService.limit.medium" restartRequired="true"/>
<registryKey defaultValue="100"
description="How many light processes to execute concurrently"
key="python.execService.limit.light" restartRequired="true"/>
</extensions>
</idea-plugin>