Revision: 949
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=949&view=rev
Author: mithro
Date: 2009-04-09 01:35:53 +0000 (Thu, 09 Apr 2009)
Log Message:
-----------
Massive cleanup of the environment.py file to make it consistent.
It's likely that I broke some of the smaller modules that I can't build
locally.
The formatting rules are as follows,
- All lists should wrap at an indent of 4 characters. Commas should be the
last thing on the line. The last item should contains a comma (for easy
addition).
abc = [
item1,
item2,
itemN,
]
- Equal signs have spaces either side to them, IE
YES: a = b NO: a=b
- No space around brackets, IE
YES: a(b) NO: a( b )
Modified Paths:
--------------
trunk/python-ogre/BuildModule.py
trunk/python-ogre/environment.py
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|