-
Notifications
You must be signed in to change notification settings - Fork 19
Coding Style
Man-Long Wong edited this page Jun 27, 2017
·
20 revisions
We use Python 2 as the core programming language for the core modules.
It is recommended to use UpperCamelCase
for class names, lowerCamelCase
for methods and functions, CAPITALIZED_WITH_UNDERSCORES
for constants, and lowercase_separated_by_underscores
for other names.
4 spaces of indentation, and no tab characters should be used.
- User Guide
- Tutorials