summaryrefslogtreecommitdiff
path: root/Lib/python/pycontainer.swg
diff options
context:
space:
mode:
authorJulien Schueller <schueller@phimeca.com>2014-06-06 15:13:23 +0200
committerJulien Schueller <schueller@phimeca.com>2014-06-06 15:13:23 +0200
commitf4fffbf668781f5308d1e944dc25238c93082b1c (patch)
tree6db0842e1f45944f1318d02c4a33db6e866c3195 /Lib/python/pycontainer.swg
parent93e06c0e5867be8dec05e9ab58c2c9fcb2320b7c (diff)
downloadswig-f4fffbf668781f5308d1e944dc25238c93082b1c.tar.gz
Fixed another E701
Diffstat (limited to 'Lib/python/pycontainer.swg')
-rw-r--r--Lib/python/pycontainer.swg3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/python/pycontainer.swg b/Lib/python/pycontainer.swg
index dcada87c7..425cc45fc 100644
--- a/Lib/python/pycontainer.swg
+++ b/Lib/python/pycontainer.swg
@@ -710,7 +710,8 @@ namespace swig
#if defined(SWIGPYTHON_BUILTIN)
%feature("python:slot", "tp_iter", functype="getiterfunc") iterator;
#else
- %pythoncode {def __iter__(self): return self.iterator()}
+ %pythoncode {def __iter__(self):
+ return self.iterator()}
#endif
}