Commit 2e052d95 authored by Stefan Behnel's avatar Stefan Behnel

Minor code modernisation for readability.

parent 40f958f3
......@@ -2028,8 +2028,8 @@ class CCodeWriter(object):
self.put_xdecref_memoryviewslice(cname, have_gil=have_gil)
return
prefix = nanny and '__Pyx' or 'Py'
X = null_check and 'X' or ''
prefix = '__Pyx' if nanny else 'Py'
X = 'X' if null_check else ''
if clear:
if clear_before_decref:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment