summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2015-04-23 22:44:21 +0200
committerStefan Behnel <stefan_ml@behnel.de>2015-04-23 22:44:21 +0200
commit853553c726acab477a0aa67407f5cd1fc15d9199 (patch)
treec7d595765a067e500eebc6927b6221a6e8bf52e3
parente6a93b55ee27c70fcad50b2717000c4890102a53 (diff)
downloadcython-853553c726acab477a0aa67407f5cd1fc15d9199.tar.gz
fix indentation
-rw-r--r--Cython/Compiler/Symtab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py
index 47d263cca..e0eec701d 100644
--- a/Cython/Compiler/Symtab.py
+++ b/Cython/Compiler/Symtab.py
@@ -1252,7 +1252,7 @@ class ModuleScope(Scope):
else:
cname = self.mangle(Naming.func_prefix, name)
if visibility == 'extern' and type.optional_arg_count:
- error(pos, "Extern functions cannot have default arguments values.")
+ error(pos, "Extern functions cannot have default arguments values.")
entry = self.lookup_here(name)
if entry and entry.defined_in_pxd:
if entry.visibility != "private":