summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/external/atoi.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/tutorial/external/atoi.pyx')
-rw-r--r--docs/examples/tutorial/external/atoi.pyx11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/examples/tutorial/external/atoi.pyx b/docs/examples/tutorial/external/atoi.pyx
index 48643bbf2..ef1219854 100644
--- a/docs/examples/tutorial/external/atoi.pyx
+++ b/docs/examples/tutorial/external/atoi.pyx
@@ -1,5 +1,6 @@
-from libc.stdlib cimport atoi
-
-cdef parse_charptr_to_py_int(char* s):
- assert s is not NULL, "byte string value is NULL"
- return atoi(s) # note: atoi() has no error detection!
+from libc.stdlib cimport atoi
+
+
+cdef parse_charptr_to_py_int(char* s):
+ assert s is not NULL, "byte string value is NULL"
+ return atoi(s) # note: atoi() has no error detection!