File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
python/pylibwholegraph/pylibwholegraph/binding Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -370,16 +370,16 @@ cdef class GlobalContextWrapper:
370370 self .output_global_context = NULL
371371
372372 def __dealloc__ (self ):
373- Py_DECREF(self .self . temp_create_context_fn)
374- Py_DECREF(self .self . temp_destroy_context_fn)
375- Py_DECREF(self .self . temp_malloc_fn)
376- Py_DECREF(self .self . temp_free_fn)
373+ Py_DECREF(self .temp_create_context_fn)
374+ Py_DECREF(self .temp_destroy_context_fn)
375+ Py_DECREF(self .temp_malloc_fn)
376+ Py_DECREF(self .temp_free_fn)
377377 if self .temp_global_context:
378- Py_DECREF(self .self . temp_global_context)
379- Py_DECREF(self .self . output_malloc_fn)
380- Py_DECREF(self .self . output_free_fn)
378+ Py_DECREF(self .temp_global_context)
379+ Py_DECREF(self .output_malloc_fn)
380+ Py_DECREF(self .output_free_fn)
381381 if self .output_global_context:
382- Py_DECREF(self .self . output_global_context)
382+ Py_DECREF(self .output_global_context)
383383
384384 cpdef create_context(self ,
385385 temp_create_context_fn,
You can’t perform that action at this time.
0 commit comments