[Python-checkins] python/dist/src/Tools/framer/framer template.py, 1.1, 1.2

loewis at users.sourceforge.net loewis at users.sourceforge.net
Fri Oct 24 16:09:25 EDT 2003


Update of /cvsroot/python/python/dist/src/Tools/framer/framer
In directory sc8-pr-cvs1:/tmp/cvs-serv25282/Tools/framer/framer

Modified Files:
	template.py 
Log Message:
Patch #812378: Normalize white space.


Index: template.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/framer/framer/template.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** template.py	5 Aug 2002 18:29:45 -0000	1.1
--- template.py	24 Oct 2003 20:09:23 -0000	1.2
***************
*** 20,31 ****
  
  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}
  };
  """
--- 20,31 ----
  
  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}
  };
  """
***************
*** 44,48 ****
  
  memberdef_end = """\
! 	{NULL}
  };
  
--- 44,48 ----
  
  memberdef_end = """\
!         {NULL}
  };
  





More information about the Python-checkins mailing list