Skip to content

Commit

Permalink
Python: mark API internal
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 316e866fc72d1710d7ac3723c54422a6b540be35
  • Loading branch information
throwable-one authored and intellij-monorepo-bot committed Feb 12, 2025
1 parent 88a0467 commit 66905cc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/ide/impl/intellij.pycharm.community.ide.impl.iml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@
<orderEntry type="module" module-name="intellij.python.community.services.shared" />
<orderEntry type="module" module-name="intellij.python.community.impl.poetry" />
<orderEntry type="module" module-name="intellij.python.community.impl.venv" />
<orderEntry type="library" name="jetbrains-annotations" level="project" />
</component>
</module>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
@ApiStatus.Internal
package com.intellij.pycharm.community.ide.impl;

import org.jetbrains.annotations.ApiStatus;
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import org.jetbrains.annotations.ApiStatus
* Used with an attempt to suggest suitable Python interpreter
* or try setup and register it in case of headless mode if no interpreter is specified.
*/
@ApiStatus.Experimental
@ApiStatus.Internal
interface PyProjectSdkConfigurationExtension {

companion object {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
@ApiStatus.Internal
package com.jetbrains.python.packaging.toolwindow.actions;

import org.jetbrains.annotations.ApiStatus;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
@ApiStatus.Internal
package com.jetbrains.python.testing.pyTestFixtures;

import org.jetbrains.annotations.ApiStatus;

0 comments on commit 66905cc

Please sign in to comment.