]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added a missing newline Output().
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 23 Jun 2005 22:32:59 +0000 (22:32 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 23 Jun 2005 22:32:59 +0000 (22:32 +0000)
Tools/bgen/bgen/bgenObjectDefinition.py

index ffdd5446e177096f90ce42008d72f893fb85907f..7f362f6bc010e7ac6b361f695968cda7b9f5b2e0 100644 (file)
@@ -117,6 +117,7 @@ class ObjectDefinition(GeneratorGroup):
         "Override this method to apply additional checks/conversions"
 
     def outputConvert(self):
+        Output()
         Output("%sint %s_Convert(PyObject *v, %s *p_itself)", self.static, self.prefix,
                 self.itselftype)
         OutLbrace()