Update of /cvsroot/pythonreports/PythonReports/PythonReports
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6171
Modified Files:
printout.py
Log Message:
style: imports come after version, date and exports
Index: printout.py
===================================================================
RCS file: /cvsroot/pythonreports/PythonReports/PythonReports/printout.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** printout.py 1 Nov 2006 11:04:43 -0000 1.1
--- printout.py 6 Dec 2006 16:54:39 -0000 1.2
***************
*** 1,4 ****
--- 1,5 ----
"""PythonReports Printout (PRP) structures"""
"""History:
+ 05-dec-2006 [als] style: imports come after version, date and exports
20-oct-2006 [als] Barcode X dimension attr renamed to "module"
26-sep-2006 [als] removed Text.bgcolor
***************
*** 11,17 ****
10-jul-2006 [als] created
"""
-
- from PythonReports.datatypes import *
-
__version__ = "$Revision$"[11:-2]
__date__ = "$Date$"[7:-2]
--- 12,15 ----
***************
*** 22,25 ****
--- 20,25 ----
]
+ from PythonReports.datatypes import *
+
Box = Validator(tag="box",
attributes={
|