Author: Fabio Niephaus <[email protected]>
Branch: fniephaus/fix-typo-1488123166752
Changeset: r90626:7cba052b934f
Date: 2017-02-26 15:33 +0000
http://bitbucket.org/pypy/pypy/changeset/7cba052b934f/
Log: Fix typo
diff --git a/rpython/jit/codewriter/call.py b/rpython/jit/codewriter/call.py
--- a/rpython/jit/codewriter/call.py
+++ b/rpython/jit/codewriter/call.py
@@ -202,12 +202,12 @@
ARGS = FUNC.ARGS
if NON_VOID_ARGS != [T for T in ARGS if T is not lltype.Void]:
raise Exception(
- "in operation %r: caling a function with signature %r, "
+ "in operation %r: calling a function with signature %r, "
"but passing actual arguments (ignoring voids) of types %r"
% (op, FUNC, NON_VOID_ARGS))
if RESULT != FUNC.RESULT:
raise Exception(
- "in operation %r: caling a function with signature %r, "
+ "in operation %r: calling a function with signature %r, "
"but the actual return type is %r" % (op, FUNC, RESULT))
# ok
# get the 'elidable' and 'loopinvariant' flags from the function object
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit