SF.net SVN: fclient: [211] trunk/sandbox/fcp/fcp2_0_message.py
Status: Pre-Alpha
Brought to you by:
jurner
From: <ju...@us...> - 2008-02-12 15:57:04
|
Revision: 211 http://fclient.svn.sourceforge.net/fclient/?rev=211&view=rev Author: jurner Date: 2008-02-12 07:57:09 -0800 (Tue, 12 Feb 2008) Log Message: ----------- pprint now print python types not Fcp types Modified Paths: -------------- trunk/sandbox/fcp/fcp2_0_message.py Modified: trunk/sandbox/fcp/fcp2_0_message.py =================================================================== --- trunk/sandbox/fcp/fcp2_0_message.py 2008-02-12 15:56:20 UTC (rev 210) +++ trunk/sandbox/fcp/fcp2_0_message.py 2008-02-12 15:57:09 UTC (rev 211) @@ -165,10 +165,10 @@ continue # convert python to fcp value if necessary - if paramTypes is not None: - paramType = paramTypes.get(param, None) - if paramType is not None: - value = paramType.pythonToFcp(value) + #if paramTypes is not None: + # paramType = paramTypes.get(param, None) + # if paramType is not None: + # value = paramType.pythonToFcp(value) out.append('>> %s=%s' % (param, value)) out.append('>>EndMessage') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |