Skip to content

Commit e59265d

Browse files
committed
Actually import set_encoding into the main module
Previously, `set_encoding` was only available from `gssapi._utils`. However, `gssapi._utils` was not intended for external use, while `set_encoding` is intended for external use. Now, `set_encoding` is available from the main `gssapi` module.
1 parent 7a69254 commit e59265d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

gssapi/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@
66
from gssapi.names import Name # noqa
77
from gssapi.sec_contexts import SecurityContext # noqa
88

9+
from gssapi._utils import set_encoding # noqa
10+
911
"""The High-Level GSSAPI Wrapper"""

0 commit comments

Comments
 (0)