From 9f0f3aa33d904cf284ce757b928db23928750657 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 2 Sep 2014 04:43:20 +0200 Subject: some of libgamma-facade MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/libgamma_native_error.pyx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/libgamma_native_error.pyx') 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(value) - if name == NULL: + if name is NULL: return None bs = name return bs.decode('utf-8', 'strict') -- cgit v1.2.3-70-g09d2