mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
PY-25234 More efficient way to check that a user skeleton belongs to the stdlib
Also, I added a test on that scenario using the skeleton for "alembic" as an example.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import re
|
||||
|
||||
import mod
|
||||
|
||||
print(re, <error descr="Unresolved reference 'sys'">s<caret>ys</error>, mod)
|
||||
@@ -0,0 +1,6 @@
|
||||
import re
|
||||
import sys
|
||||
|
||||
import mod
|
||||
|
||||
print(re, sys, mod)
|
||||
Reference in New Issue
Block a user