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

test.py « testmodule « python « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 521348acb595c5c882198304afa9079d078f6583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/env python

# CVS
# $Author$
# $Date$
# $RCSfile$
# $Revision$

import testmodule

tc = testmodule.TestClass()

print tc.memberVariable
tc.memberVariable = 1
print tc.memberVariable
tc.memberFunction()