Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-05-28 22:42:11 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-05-28 22:42:11 +0400
commitdb158b42deecf317e609cdd9b157e2b8a5133d99 (patch)
tree2cea1942fddc2a6297f86477ca42204951fca86e /source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
parent11e8782d01444c102ef111df39929207d3a4b145 (diff)
Documentation updates: Replaced "string" with "str".
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
index 3d4ec47c6f7..e68cc3fd28b 100644
--- a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
+++ b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
@@ -250,7 +250,7 @@ static char StrokeAttribute_getAttributeReal___doc__[] =
" Returns an attribute of float type.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :return: The attribute value.\n"
" :rtype: float\n";
@@ -270,7 +270,7 @@ static char StrokeAttribute_getAttributeVec2f___doc__[] =
" Returns an attribute of two-dimensional vector type.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :return: The attribute value.\n"
" :rtype: :class:`mathutils.Vector`\n";
@@ -290,7 +290,7 @@ static char StrokeAttribute_getAttributeVec3f___doc__[] =
" Returns an attribute of three-dimensional vector type.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :return: The attribute value.\n"
" :rtype: :class:`mathutils.Vector`\n";
@@ -310,7 +310,7 @@ static char StrokeAttribute_isAttributeAvailableReal___doc__[] =
" Checks whether the attribute iName of float type is available.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :return: True if the attribute is availbale.\n"
" :rtype: bool\n";
@@ -330,7 +330,7 @@ static char StrokeAttribute_isAttributeAvailableVec2f___doc__[] =
" is available.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :return: True if the attribute is availbale.\n"
" :rtype: bool\n";
@@ -350,7 +350,7 @@ static char StrokeAttribute_isAttributeAvailableVec3f___doc__[] =
" type is available.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :return: True if the attribute is availbale.\n"
" :rtype: bool\n";
@@ -507,7 +507,7 @@ static char StrokeAttribute_setAttributeReal___doc__[] =
" replaces the old one.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :arg att: The attribute value.\n"
" :type att: float\n";
@@ -530,7 +530,7 @@ static char StrokeAttribute_setAttributeVec2f___doc__[] =
" the new value replaces the old one.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :arg att: The attribute value.\n"
" :type att: :class:`mathutils.Vector`, list or tuple of 2 real numbers\n";
@@ -559,7 +559,7 @@ static char StrokeAttribute_setAttributeVec3f___doc__[] =
" Otherwise, the new value replaces the old one.\n"
"\n"
" :arg iName: The name of the attribute.\n"
-" :type iName: string\n"
+" :type iName: str\n"
" :arg att: The attribute value.\n"
" :type att: :class:`mathutils.Vector`, list or tuple of 3 real numbers\n";