[PythonReports-checkins] PythonReports/PythonReports __init__.py, 1.2, 1.3
Brought to you by:
a1s
From: alexander s. <a1...@us...> - 2006-11-03 10:35:28
|
Update of /cvsroot/pythonreports/PythonReports/PythonReports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8787 Modified Files: __init__.py Log Message: import __version__ and __date__ from the version module Index: __init__.py =================================================================== RCS file: /cvsroot/pythonreports/PythonReports/PythonReports/__init__.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** __init__.py 1 Nov 2006 11:15:32 -0000 1.2 --- __init__.py 3 Nov 2006 10:35:26 -0000 1.3 *************** *** 12,15 **** --- 12,16 ---- """ """History: + 03-nov-2006 [als] import __version__ and __date__ from the version module 01-nov-2006 [als] fix: Builder not imported 01-nov-2006 [als] added API exports *************** *** 17,23 **** """ - __version__ = "$Revision$"[11:-2] - __date__ = "$Date$"[7:-2] - __all__ = [ "template", "load_template", --- 18,21 ---- *************** *** 30,33 **** --- 28,32 ---- from PythonReports.printout import load as load_printout from PythonReports.builder import Builder + from PythonReports.version import * try: |