15 lines
234 B
Python
15 lines
234 B
Python
![]() |
#! /usr/bin/env python
|
||
|
|
||
|
# CVS
|
||
|
# $Author$
|
||
|
# $Date$
|
||
|
# $RCSfile$
|
||
|
# $Revision$
|
||
|
|
||
|
class TestClass:
|
||
|
def __init__(self):
|
||
|
self.memberVariable = "initValue"
|
||
|
|
||
|
def memberFunction(self):
|
||
|
print "inside memberFunction() ..."
|