[pywin32-checkins] pywin32/com/win32com/servers PythonTools.py, 1.3, 1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-27 03:53:31
|
Update of /cvsroot/pywin32/pywin32/com/win32com/servers In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31031/com/win32com/servers Modified Files: PythonTools.py Log Message: Replace backticks with explicit repr() calls. Index: PythonTools.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/servers/PythonTools.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PythonTools.py 21 Aug 2000 03:46:55 -0000 1.3 --- PythonTools.py 27 Nov 2008 03:53:25 -0000 1.4 *************** *** 18,22 **** def echo(self, arg): ! return `arg` def sleep(self, t): --- 18,22 ---- def echo(self, arg): ! return repr(arg) def sleep(self, t): |