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

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

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

class TestClass:
    def __init__(self):
        self.memberVariable = "initValue"

    def memberFunction(self):
        print "inside memberFunction() ..."