8000 Merge pull request #86 from eitanlees/missing-parentheses · lhoupert/from-python-to-numpy@b8f8d94 · GitHub
[go: up one dir, main page]

Skip to content

Commit b8f8d94

Browse files
authored
Merge pull request rougier#86 from eitanlees/missing-parentheses
Add missing parentheses to print statement
2 parents 1e28498 + a97afeb commit b8f8d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03-anatomy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ conversion method:
129129
>>> for i in range(Z.ndim):
130130
... offset_start += Z.strides[i] * index[i]
131131
>>> offset_end = offset_start + Z.itemsize
132-
>>> print(Z.tobytes()[offset_start:offset_end]
132+
>>> print(Z.tobytes()[offset_start:offset_end])
133133
b'\x04\x00'
134134
135135

0 commit comments

Comments
 (0)
0