17 lines
		
	
	
		
			214 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			214 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | #! /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() |