~ubuntu-branches/debian/experimental/spyder/experimental

« back to all changes in this revision

Viewing changes to spyderlib/utils/iofuncs.py

  • Committer: Package Import Robot
  • Author(s): Picca Frédéric-Emmanuel
  • Date: 2013-03-27 16:25:27 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20130327162527-kk4v2dr2fshy9ljf
Tags: 2.2.0~rc+dfsg-1
* Imported Upstream version 2.2.0~rc+dfsg
* Suggests: tortoisehg and gitk (Closes: #704064)

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
            import scipy.io as spio
31
31
    except AttributeError:
32
32
        # Python 2.5: warnings.catch_warnings was introduced in Python 2.6
33
 
        import scipy.io as spio
 
33
        import scipy.io as spio  # analysis:ignore
34
34
    def load_matlab(filename):
35
35
        try:
36
36
            out = spio.loadmat(filename, struct_as_record=True,
58
58
 
59
59
 
60
60
try:
61
 
    import numpy as np
 
61
    import numpy as np  # analysis:ignore
62
62
    def load_array(filename):
63
63
        try:
64
64
            name = osp.splitext(osp.basename(filename))[0]