"Fossies" - the Fresh Open Source Software Archive 
Member "NZMATH-1.2.0/nzmath/__init__.py" (19 Nov 2012, 790 Bytes) of package /linux/misc/old/NZMATH-1.2.0.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Python source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "__init__.py" see the
Fossies "Dox" file reference documentation.
1 """
2 NZMATH is a Python based number theory oriented calculation system.
3 It is developed at Tokyo Metropolitan University.
4
5 NZMATH is distributed under the BSD license. See LICENSE.txt for
6 detail.
7
8 Copyright (c) 2003-2010, NZMATH development group, all right reserved.
9 """
10
11 __all__ = [
12 "algfield",
13 "arith1",
14 "arygcd",
15 "bigrandom",
16 "bigrange",
17 "combinatorial",
18 "compatibility",
19 "config",
20 "cubic_root",
21 "ecpp",
22 "elliptic",
23 "equation",
24 "factor",
25 "finitefield",
26 "gcd",
27 "group",
28 "imaginary",
29 "intresidue",
30 "lattice",
31 "matrix",
32 "multiplicative",
33 "permute",
34 "poly",
35 "prime",
36 "quad",
37 "rational",
38 "real",
39 "ring",
40 "round2",
41 "squarefree",
42 "vector"
43 ]
44
45 __all__.append("all")