summaryrefslogtreecommitdiff
path: root/Tools/framer/framer/template.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
commitc71fe97a2c07d09144fd634f442a8ad29c84e0c0 (patch)
treea3058fb9abd3146b5bafd435e449cce2df397876 /Tools/framer/framer/template.py
parentacbad78022027cf7d94c4b9d60b1a1f44441ad93 (diff)
downloadcpython-c71fe97a2c07d09144fd634f442a8ad29c84e0c0.tar.gz
Whitespace normalization, via reindent.py.
Diffstat (limited to 'Tools/framer/framer/template.py')
-rw-r--r--Tools/framer/framer/template.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/framer/framer/template.py b/Tools/framer/framer/template.py
index 8d16204822..41f95371b8 100644
--- a/Tools/framer/framer/template.py
+++ b/Tools/framer/framer/template.py
@@ -20,11 +20,11 @@ static struct PyMethodDef %(MethodDefName)s[] = {"""
methoddef_def = """\
{"%(PythonName)s", (PyCFunction)%(CName)s, %(MethType)s},"""
-
+
methoddef_def_doc = """\
{"%(PythonName)s", (PyCFunction)%(CName)s, %(MethType)s,
%(DocstringVar)s},"""
-
+
methoddef_end = """\
{NULL, NULL}
};
@@ -96,7 +96,7 @@ module_add_type = """\
type_struct_start = """\
static PyTypeObject %(CTypeName)s = {
PyObject_HEAD_INIT(0)"""
-
+
type_struct_end = """\
};
"""