From: Kevin A. <ka...@us...> - 2006-07-28 17:01:31
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4586 Modified Files: about.py Log Message: updated to show ansi or unicode version of wxPython Index: about.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/about.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** about.py 3 Oct 2004 18:53:22 -0000 1.6 --- about.py 28 Jul 2006 16:40:27 -0000 1.7 *************** *** 20,24 **** """ txt += "PythonCard version: %s\n" % __version__.VERSION_STRING ! txt += "wxPython version: %s\n" % wx.VERSION_STRING txt += "Python version: %s\n" % sys.version txt += "Platform: %s\n" % os.sys.platform --- 20,24 ---- """ txt += "PythonCard version: %s\n" % __version__.VERSION_STRING ! txt += "wxPython version: %s (%s)\n" % (wx.VERSION_STRING, wx.USE_UNICODE and 'unicode' or 'ansi') txt += "Python version: %s\n" % sys.version txt += "Platform: %s\n" % os.sys.platform |