summaryrefslogtreecommitdiff
path: root/Tools/modulator/genmodule.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-07-18 06:16:08 +0000
committerTim Peters <tim.peters@gmail.com>2004-07-18 06:16:08 +0000
commit182b5aca27d376b08a2904bed42b751496f932f3 (patch)
treedf13115820dbc879c0fe2eae488c9f8c0215a7da /Tools/modulator/genmodule.py
parente6ddc8b20b493fef2e7cffb2e1351fe1d238857e (diff)
downloadcpython-git-182b5aca27d376b08a2904bed42b751496f932f3.tar.gz
Whitespace normalization, via reindent.py.
Diffstat (limited to 'Tools/modulator/genmodule.py')
-rwxr-xr-xTools/modulator/genmodule.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/modulator/genmodule.py b/Tools/modulator/genmodule.py
index 5788b95579..da3068472d 100755
--- a/Tools/modulator/genmodule.py
+++ b/Tools/modulator/genmodule.py
@@ -65,7 +65,7 @@ class writer:
return open(fn, 'r')
raise error, 'Template '+name+' not found for '+self._type+' '+ \
self.name
-
+
class module(writer):
_type = 'module'
@@ -116,7 +116,7 @@ class object(writer):
# Add getattr if we have methods
if self.methodlist and not 'tp_getattr' in self.funclist:
self.funclist.insert(0, 'tp_getattr')
-
+
for fn in FUNCLIST:
setattr(self, fn, '0')