[pygccxml-commit] source/pyplusplus/file_writers writer.py,1.11,1.12
Brought to you by:
mbaas,
roman_yakovenko
From: Matthias B. <mb...@us...> - 2006-03-08 09:30:37
|
Update of /cvsroot/pygccxml/source/pyplusplus/file_writers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14385/file_writers Modified Files: writer.py Log Message: Modified some doc strings so that epydoc doesn't generate warnings/errors anymore Index: writer.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/file_writers/writer.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** writer.py 28 Feb 2006 07:31:33 -0000 1.11 --- writer.py 8 Mar 2006 09:30:33 -0000 1.12 *************** *** 10,17 **** class writer_t(object): ! """ Base class for all module/code writers. ! All writers should have similar usage: ! w = writer_class(module, file, ...) ! w.write() """ def __init__(self, extmodule): --- 10,18 ---- class writer_t(object): ! """Base class for all module/code writers. ! ! All writers should have similar usage: ! w = writer_class(module, file, ...) ! w.write() """ def __init__(self, extmodule): *************** *** 59,61 **** f.write( fcontent_new ) f.close() ! write_file = staticmethod( write_file ) \ No newline at end of file --- 60,62 ---- f.write( fcontent_new ) f.close() ! write_file = staticmethod( write_file ) |