mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: baf95e1db4db898d1e18051972f69799c95fa3b0
8 lines
240 B
Python
8 lines
240 B
Python
import warnings
|
|
warnings.warn("the deprecated module is deprecated; use a non-deprecated module instead",
|
|
DeprecationWarning, 2)
|
|
|
|
def bar():
|
|
import warnings
|
|
warnings.warn("this is deprecated", DeprecationWarning, 2)
|