""" It removes "from __future__ import division", fixes a couple of bugs and adds a lot of whitespace. Since I also removed an instance of [::-1] for list reversing, I think this ought to work on older pythons (I have not tested though). """ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			23 lines
		
	
	
		
			574 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			574 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""
 | 
						|
The Object Graphics Library provides for simple drawing and manipulation
 | 
						|
of 2D objects.
 | 
						|
"""
 | 
						|
 | 
						|
from _basic import *
 | 
						|
from _diagram import *
 | 
						|
from _canvas import *
 | 
						|
from _lines import *
 | 
						|
from _bmpshape import *
 | 
						|
from _divided import *
 | 
						|
from _composit import *
 | 
						|
 | 
						|
 | 
						|
 | 
						|
# Set things up for documenting with epydoc.  The __docfilter__ will
 | 
						|
# prevent some things from being documented, and anything in __all__
 | 
						|
# will appear to actually exist in this module.
 | 
						|
import wx._core as _wx
 | 
						|
__docfilter__ = _wx.__DocFilter(globals())
 | 
						|
__all__ = [name for name in dir() if not name.startswith('_')]
 | 
						|
 |