mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-47281 Exclude names from internal modules of libraries from auto-importing
Namely, names such as "numpy.random._examples.numba.extending.numbacall" or "numpy.testing._private.noseclasses.NumpyDoctest" should no longer be suggested, unless they are also exported in a public package higher in the hierarchy. It doesn't not affect definitions from internal modules that belong to project sources, these are still offered in the lookup. GitOrigin-RevId: 2be393f30bd7d9905a31bdbe8db101807c136617
This commit is contained in:
committed by
intellij-monorepo-bot
parent
df979257a6
commit
6f9013eb6b
+6
@@ -0,0 +1,6 @@
|
||||
def func_exported():
|
||||
pass
|
||||
|
||||
|
||||
def func():
|
||||
pass
|
||||
+1
@@ -0,0 +1 @@
|
||||
from ._impl import func_exported
|
||||
+1
@@ -0,0 +1 @@
|
||||
mypa.fu<caret>
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
def func():
|
||||
pass
|
||||
+1
@@ -0,0 +1 @@
|
||||
from ._impl import func_exported
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
def func_exported():
|
||||
pass
|
||||
|
||||
|
||||
def func():
|
||||
pass
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
def func():
|
||||
pass
|
||||
+1
@@ -0,0 +1 @@
|
||||
mypack.fun<caret>
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
def func():
|
||||
pass
|
||||
Reference in New Issue
Block a user