aboutsummaryrefslogtreecommitdiffstats
path: root/src/libgamma_native_error.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgamma_native_error.pyx')
-rw-r--r--src/libgamma_native_error.pyx7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libgamma_native_error.pyx b/src/libgamma_native_error.pyx
index 8696d10..b10dc5a 100644
--- a/src/libgamma_native_error.pyx
+++ b/src/libgamma_native_error.pyx
@@ -106,7 +106,7 @@ def libgamma_native_get_group_name() -> str:
cannot be determined.
'''
cdef bytes bs
- if libgamma_group_name == NULL:
+ if libgamma_group_name is NULL:
return None
bs = libgamma_group_name
return bs.decode('utf-8', 'strict')
@@ -157,13 +157,12 @@ def libgamma_native_name_of_error(value : int) -> str:
@param value The error code.
@return The name of the definition associated with the error code,
- `None` if the error code does not exist. The return string
- should not be `free`:d.
+ `None` if the error code does not exist.
'''
cdef const char* name
cdef bytes bs
name = libgamma_name_of_error(<int>value)
- if name == NULL:
+ if name is NULL:
return None
bs = name
return bs.decode('utf-8', 'strict')