blob: a8607381f7b05188a52e5ac1d6a2c372c2388f22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# coding=utf-8
"""
DEPRECATED: This module is deprecated and kept only for backward compatibility.
Please use library.python.port_manager instead:
from library.python.port_manager import PortManager
This module will be removed in future versions.
"""
import warnings
warnings.warn(
"yatest.common.network is deprecated, use library.python.port_manager instead",
DeprecationWarning,
stacklevel=2,
)
from library.python.port_manager import * # noqa
|