import_pychecker.py
Go to the documentation of this file.00001
00002 "Find potential bugs in SFC by static code analysis."
00003
00004
00005 import os, sys, glob, shutil, re, logging, itertools
00006 try:
00007 import numpy
00008 except:
00009 pass
00010 try:
00011 import swiginac
00012 except:
00013 pass
00014 try:
00015 import sympy
00016 except:
00017 pass
00018 try:
00019 import sympycore
00020 except:
00021 pass
00022 try:
00023 import SyFi
00024 except:
00025 pass
00026
00027 import pychecker.checker
00028 import newsfc
00029