Commit 270d1cfb authored by Stefan Behnel's avatar Stefan Behnel

reformat some code

parent d962b018
...@@ -3897,13 +3897,13 @@ class IndexNode(ExprNode): ...@@ -3897,13 +3897,13 @@ class IndexNode(ExprNode):
negative_indices = Buffer.buffer_defaults['negative_indices'] negative_indices = Buffer.buffer_defaults['negative_indices']
return buffer_entry, Buffer.put_buffer_lookup_code( return buffer_entry, Buffer.put_buffer_lookup_code(
entry=buffer_entry, entry=buffer_entry,
index_signeds=[ivar.type.signed for ivar in self.indices], index_signeds=[ivar.type.signed for ivar in self.indices],
index_cnames=index_temps, index_cnames=index_temps,
directives=code.globalstate.directives, directives=code.globalstate.directives,
pos=self.pos, code=code, pos=self.pos, code=code,
negative_indices=negative_indices, negative_indices=negative_indices,
in_nogil_context=self.in_nogil_context) in_nogil_context=self.in_nogil_context)
def put_memoryviewslice_slice_code(self, code): def put_memoryviewslice_slice_code(self, code):
"memslice[:]" "memslice[:]"
......
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