libknot 3.3.5__tar.gz → 3.3.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {libknot-3.3.5 → libknot-3.3.7}/PKG-INFO +1 -1
- {libknot-3.3.5 → libknot-3.3.7}/libknot/control.py +1 -1
- {libknot-3.3.5 → libknot-3.3.7}/libknot.egg-info/PKG-INFO +1 -1
- {libknot-3.3.5 → libknot-3.3.7}/pyproject.toml +1 -1
- {libknot-3.3.5 → libknot-3.3.7}/setup.py +1 -1
- {libknot-3.3.5 → libknot-3.3.7}/README.md +0 -0
- {libknot-3.3.5 → libknot-3.3.7}/libknot/__init__.py +0 -0
- {libknot-3.3.5 → libknot-3.3.7}/libknot/dname.py +0 -0
- {libknot-3.3.5 → libknot-3.3.7}/libknot/probe.py +0 -0
- {libknot-3.3.5 → libknot-3.3.7}/libknot.egg-info/SOURCES.txt +0 -0
- {libknot-3.3.5 → libknot-3.3.7}/libknot.egg-info/dependency_links.txt +0 -0
- {libknot-3.3.5 → libknot-3.3.7}/libknot.egg-info/top_level.txt +0 -0
- {libknot-3.3.5 → libknot-3.3.7}/setup.cfg +0 -0
|
@@ -70,7 +70,7 @@ class KnotCtlData(object):
|
|
|
70
70
|
def __setitem__(self, index: KnotCtlDataIdx, value: str) -> None:
|
|
71
71
|
"""Data unit item setter."""
|
|
72
72
|
|
|
73
|
-
self.data[index] = ctypes.c_char_p(value.encode()) if value else ctypes.c_char_p()
|
|
73
|
+
self.data[index] = ctypes.c_char_p(value.encode()) if value != None else ctypes.c_char_p()
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
class KnotCtlError(Exception):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|