File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99dynamically selects the supported GMP protocol of the remote manager daemon.
1010
1111If you need to use a specific GMP version, you can use the :class:`GMPv224`,
12- :class:`GMPv225`, :class:`GMPv226`, :class:`GMPv227` or :class:`GMPNext ` classes.
12+ :class:`GMPv225`, :class:`GMPv226`, or :class:`GMPv227 ` classes.
1313
1414* :class:`GMP` - Dynamically select supported GMP protocol of the remote manager daemon.
1515* :class:`GMPv224` - GMP version 22.4
1616* :class:`GMPv225` - GMP version 22.5
1717* :class:`GMPv226` - GMP version 22.6
1818* :class:`GMPv227` - GMP version 22.7
19- * :class:`GMPNext` - "next" GMP version, containing unstable features
2019"""
2120
2221from ._gmp import GMP
2322from ._gmp224 import GMPv224
2423from ._gmp225 import GMPv225
2524from ._gmp226 import GMPv226
2625from ._gmp227 import GMPv227
27- from ._gmpnext import GMPNext
2826
2927Gmp = GMP # for backwards compatibility
3028
3533 "GMPv225" ,
3634 "GMPv226" ,
3735 "GMPv227" ,
38- "GMPNext" ,
3936)
Original file line number Diff line number Diff line change 1919 - :py:class:`gvm.protocols.ospv1.Osp`
2020"""
2121
22- from .gmp import (
22+ from .gmp . _gmpnext import (
2323 GMPNext as Gmp ,
24- GMPNext as GMP ,
2524)
2625from .ospv1 import Osp
2726
Original file line number Diff line number Diff line change 77from unittest .mock import MagicMock , patch
88
99from gvm .errors import GvmError
10- from gvm .protocols .gmp import Gmp , GMPNext
10+ from gvm .protocols .gmp import Gmp
11+ from gvm .protocols .gmp ._gmpnext import GMPNext
1112from gvm .protocols .gmp ._gmp224 import GMPv224
1213from gvm .protocols .gmp ._gmp225 import GMPv225
1314from gvm .protocols .gmp ._gmp226 import GMPv226
Original file line number Diff line number Diff line change 33# SPDX-License-Identifier: GPL-3.0-or-later
44#
55
6- from gvm .protocols .gmp import GMPNext
6+ from gvm .protocols .gmp . _gmpnext import GMPNext
77
88from .. import GmpTestCase as BaseGMPTestCase
99
You can’t perform that action at this time.
0 commit comments