SF.net SVN: fclient: [479] trunk/fcp2/src/fcp2/config.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-07-02 07:04:43
|
Revision: 479
http://fclient.svn.sourceforge.net/fclient/?rev=479&view=rev
Author: jUrner
Date: 2008-07-02 00:04:52 -0700 (Wed, 02 Jul 2008)
Log Message:
-----------
fixed broken docstrings
Modified Paths:
--------------
trunk/fcp2/src/fcp2/config.py
Modified: trunk/fcp2/src/fcp2/config.py
===================================================================
--- trunk/fcp2/src/fcp2/config.py 2008-07-02 07:04:45 UTC (rev 478)
+++ trunk/fcp2/src/fcp2/config.py 2008-07-02 07:04:52 UTC (rev 479)
@@ -23,7 +23,7 @@
ConfigItems carry a values dict where the actual values for a key are stored.
-Values can be accessed by specifying the desired value class (see L{consts.ConfigValueClass})::
+Values can be accessed by specifying the desired value class (see L{ConfigValueClass})::
value, valueType = configItem.values[consts.ConfigValueClass.Current]
@@ -41,8 +41,8 @@
Note that Fcp passes some basic information about value types. This package does
a bit more work and passes detailed information about the value type (as far as it is
-known) as one of the L{types.FcpType} subclasses. Unknown value types are passed
-as L{types.FcpType}.
+known) as one of the L{types.Type} subclasses. Unknown value types are passed
+as L{types.Type}.
"""
import os, sys
@@ -402,7 +402,7 @@
@return: (bool) True if the key has been added, False otherwise
@note: if the item does not already exist it is created
- @note: if the key is unknown its type will always be set to L{types.FcpType}
+ @note: if the key is unknown its type will always be set to L{types.Type}
"""
paramClass, components = _ConfigMessageParamTypes.splitParamClass(key)
paramType = _ConfigMessageParamTypes.get(key, None)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|