Changes to Documentation Format ONLY.

no executable code.

Martin noticed many of our bpy instance variables were
incorrectly marked as class variables in the doc.  This
commit essentially changes the title of sections of the doc
from Class Variables to Instance Variables.  Now that we are
adding class or module dictionaries for constants, etc. this is
a distinction worth making.  Plus it is right.
This commit is contained in:
Stephen Swaney
2005-06-15 06:22:26 +00:00
parent 7eee2e7f8a
commit 401dfba305
24 changed files with 351 additions and 351 deletions

View File

@@ -1716,8 +1716,8 @@ class Buffer:
sliceBuffer = myByteBuffer[0:16]
print sliceBuffer
@cvar list: The contents of the Buffer.
@cvar dimensions: The size of the Buffer.
@ivar list: The contents of the Buffer.
@ivar dimensions: The size of the Buffer.
"""
def __init__(type, dimensions, template = None):