diff options
| author | robot-piglet <[email protected]> | 2026-03-04 02:50:13 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2026-03-04 03:20:51 +0300 |
| commit | 191ea19c5d932b91ec1dded18d80b12ec9b4136b (patch) | |
| tree | e00ebc9daca2bbbf4011a1e5fb836b0b27c526a0 /library/python | |
| parent | 24fa6d949c15fefa354f926e1c6e4319c0409993 (diff) | |
Intermediate changes
commit_hash:1142ce0bfe5545534e53ac5fac0138589e0b3ba1
Diffstat (limited to 'library/python')
| -rw-r--r-- | library/python/testing/yatest_common/yatest/common/network.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/network.py b/library/python/testing/yatest_common/yatest/common/network.py index 2cd882c7974..a8607381f7b 100644 --- a/library/python/testing/yatest_common/yatest/common/network.py +++ b/library/python/testing/yatest_common/yatest/common/network.py @@ -8,4 +8,12 @@ Please use library.python.port_manager instead: 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 |
