summaryrefslogtreecommitdiff
path: root/wrappers
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-21 15:19:49 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-21 15:19:49 +0200
commitbad02030afd140da5643b49a94ffff3395d013e4 (patch)
tree27e6c04183fd6000d63ec0671c82bfaad712a21d /wrappers
parent792fb9e5ad24fea16753fa9b9c25e0f4436e2c10 (diff)
Python: Add more meta private tags
Diffstat (limited to 'wrappers')
-rw-r--r--wrappers/python/eduvpn_common/loader.py3
-rw-r--r--wrappers/python/eduvpn_common/types.py5
2 files changed, 7 insertions, 1 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py
index f299f94..fc3d090 100644
--- a/wrappers/python/eduvpn_common/loader.py
+++ b/wrappers/python/eduvpn_common/loader.py
@@ -21,6 +21,8 @@ from eduvpn_common.types import (
def load_lib() -> CDLL:
"""The function that loads the Go shared library
+ :meta private:
+
:return: The Go shared library loaded with cdll.LoadLibrary from ctypes
:rtype: CDLL
"""
@@ -61,6 +63,7 @@ def initialize_functions(lib: CDLL) -> None:
:param lib: CDLL: The Go shared library
+ :meta private:
"""
# Exposed functions
# We have to use c_void_p instead of c_char_p to free it properly
diff --git a/wrappers/python/eduvpn_common/types.py b/wrappers/python/eduvpn_common/types.py
index efecd2a..8ebae6a 100644
--- a/wrappers/python/eduvpn_common/types.py
+++ b/wrappers/python/eduvpn_common/types.py
@@ -37,7 +37,10 @@ class cServerLocations(Structure):
class cDiscoveryOrganization(Structure):
- """The C type that represents a Discovery Organization as returned by the Go library"""
+ """The C type that represents a Discovery Organization as returned by the Go library
+
+ :meta private:
+ """
_fields_ = [
("display_name", c_char_p),
("org_id", c_char_p),