mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
It's necessary for the rare case when the same definition, module or package is imported multiple times with different aliases or both with and without alias.
6 lines
93 B
Python
6 lines
93 B
Python
import numpy
|
|
import numpy as np
|
|
|
|
np.ones(3)
|
|
|
|
numpy.asarray([1,2,3]) # <-- invoke qfix here |