summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-07-09 11:46:11 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-07-09 11:46:11 +0200
commit85d9738e05b9822d13c15740c91ac1eeaa73647e (patch)
tree7cbc1f4bb665f21465c99dea62c42542edae2fb9
parent0a64e5df8401dd4f6a4067fe612e44729d2400c4 (diff)
downloadcython-85d9738e05b9822d13c15740c91ac1eeaa73647e.tar.gz
Fix typo in error message.
-rw-r--r--Cython/Compiler/ModuleNode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py
index f006ee2c6..bd4e5ca49 100644
--- a/Cython/Compiler/ModuleNode.py
+++ b/Cython/Compiler/ModuleNode.py
@@ -2077,7 +2077,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
extra_arg = ', extra_arg'
extra_arg_decl = ', PyObject* extra_arg'
else:
- error(pos, "Unexpected type lost signature: %s" % slot)
+ error(pos, "Unexpected type slot signature: %s" % slot)
def has_slot_method(method_name):
entry = scope.lookup(method_name)