[Spice-devel] [PATCH v2 04/43] codegen: Optimize code indentation avoiding loop
Frediano Ziglio
fziglio at redhat.com
Wed Jul 8 06:53:37 PDT 2015
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
python_modules/codegen.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/python_modules/codegen.py b/python_modules/codegen.py
index 55500b7..02ffdb9 100644
--- a/python_modules/codegen.py
+++ b/python_modules/codegen.py
@@ -130,8 +130,7 @@ class CodeWriter:
return
if self.at_line_start:
- for i in range(self.indentation):
- self.out.write(u" ")
+ self.out.write(u" " * self.indentation)
self.at_line_start = False
self.out.write(s)
return self
--
2.1.0
More information about the Spice-devel
mailing list