Skip to content

Code Style

gbelvin edited this page Jun 24, 2011 · 2 revisions

#File Name Standards

  • Unit Test code should end with _test.py

#Code Standards

  • Import statements of the form from scheme import * should be avoided. Instead, use from schemes.scheme import scheme_class. This avoids certain errors when invoking tests.
Clone this wiki locally