edsger 0.1.4__cp311-cp311-macosx_11_0_arm64.whl → 0.1.6__cp311-cp311-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
edsger/path_tracking.pyx CHANGED
@@ -14,6 +14,13 @@ cdef functions:
14
14
  Compute the sequence of vertices forming a path.
15
15
  """
16
16
 
17
+ # cython: language_level=3
18
+ # cython: boundscheck=False
19
+ # cython: wraparound=False
20
+ # cython: embedsignature=False
21
+ # cython: cdivision=True
22
+ # cython: initializedcheck=False
23
+
17
24
  import numpy as np
18
25
  cimport numpy as cnp
19
26