You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
It would be nice if Spyder had a startup option that was consistent with
the coding style guidelines for numpy and scipy as documented here: http://projects.scipy.org/numpy/wiki/CodingStyleGuidelines import numpy as np
import scipy as sp
import matplotlib as mpl
import matplotlib.pyplot as plt
The attached spyder.py has a new option --spack (scientific packages) that
enables this capability.
You're right, if there are guidelines, let's follow them.
Here is what could be done, as a compromise:
option --basics: (this option may be enabled by default)
import numpy as np
import scipy as sp
import matplotlib as mpl
import matplotlib.pyplot as plt
option --all:
import numpy as np
import scipy as sp
import matplotlib as mpl
import matplotlib.pyplot as plt
import sys, time, re, os, os.path as osp
from pylab import *
From [email protected] on 2009-09-02T06:38:58Z
Hi,
It would be nice if Spyder had a startup option that was consistent with
the coding style guidelines for numpy and scipy as documented here: http://projects.scipy.org/numpy/wiki/CodingStyleGuidelines import numpy as np
import scipy as sp
import matplotlib as mpl
import matplotlib.pyplot as plt
The attached spyder.py has a new option --spack (scientific packages) that
enables this capability.
Attachment: spyder.py
Original issue: http://code.google.com/p/spyderlib/issues/detail?id=22
The text was updated successfully, but these errors were encountered: