Mercurial > pylearn
changeset 1293:879a5633bb52
A small addendum about the 'import A as B' moratorium.
author | David Warde-Farley <wardefar@iro.umontreal.ca> |
---|---|
date | Fri, 01 Oct 2010 11:27:41 -0400 |
parents | 10113a1050ce |
children | 71f3f22497fe |
files | doc/v2_planning/coding_style.txt |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/v2_planning/coding_style.txt Tue Sep 28 16:27:21 2010 -0400 +++ b/doc/v2_planning/coding_style.txt Fri Oct 01 11:27:41 2010 -0400 @@ -114,6 +114,10 @@ from foo import Bar, Blah when imported stuff is re-used multiple times in the same file, and there is no ambiguity. + DWF: One exception I'd like to propose to the "import A as B" moratorium + is that we adopt the "import numpy as np" standard that's used in + NumPy and SciPy itself. For NumPy heavy code this really cuts down + on clutter, without significant impact on readability (IMHO). * Imports should usually be on separate lines. OD: I would add an exception, saying it is ok to group multiple imports