Commit d887dac9 authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #143 from tshirtman/patch-1

Update docs/src/tutorial/caveats.rst
parents 5b0e8f8b a8e5447d
......@@ -7,7 +7,7 @@ for Python users, so this list may change in the future.
- ``10**-2 == 0``, instead of ``0.01`` like in Python.
- Given two typed ``int`` variables ``a`` and ``b``, ``a % b`` has the
same sign as the second argument (following Python semantics) rather then
same sign as the second argument (following Python semantics) rather than
having the same sign as the first (as in C). The C behavior can be
obtained, at some speed gain, by enabling the division directive.
(Versions prior to Cython 0.12. always followed C semantics.)
......
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