当前位置: 首页>>代码示例>>Python>>正文


Python testing.temppath方法代码示例

本文整理汇总了Python中numpy.testing.temppath方法的典型用法代码示例。如果您正苦于以下问题:Python testing.temppath方法的具体用法?Python testing.temppath怎么用?Python testing.temppath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在numpy.testing的用法示例。


在下文中一共展示了testing.temppath方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: build_code

# 需要导入模块: from numpy import testing [as 别名]
# 或者: from numpy.testing import temppath [as 别名]
def build_code(source_code, options=[], skip=[], only=[], suffix=None,
               module_name=None):
    """
    Compile and import Fortran code using f2py.

    """
    if suffix is None:
        suffix = '.f'
    with temppath(suffix=suffix) as path:
        with open(path, 'w') as f:
            f.write(source_code)
        return build_module([path], options=options, skip=skip, only=only,
                            module_name=module_name)

#
# Check if compilers are available at all...
# 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:19,代码来源:util.py

示例2: test_fromtextfile

# 需要导入模块: from numpy import testing [as 别名]
# 或者: from numpy.testing import temppath [as 别名]
def test_fromtextfile(self):
        # Tests reading from a text file.
        fcontent = (
"""#
'One (S)','Two (I)','Three (F)','Four (M)','Five (-)','Six (C)'
'strings',1,1.0,'mixed column',,1
'with embedded "double quotes"',2,2.0,1.0,,1
'strings',3,3.0E5,3,,1
'strings',4,-1e-10,,,1
""")
        with temppath() as path:
            with open(path, 'w') as f:
                f.write(fcontent)
            mrectxt = fromtextfile(path, delimitor=',', varnames='ABCDEFG')
        assert_(isinstance(mrectxt, MaskedRecords))
        assert_equal(mrectxt.F, [1, 1, 1, 1])
        assert_equal(mrectxt.E._mask, [1, 1, 1, 1])
        assert_equal(mrectxt.C, [1, 2, 3.e+5, -1e-10]) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:20,代码来源:test_mrecords.py

示例3: test_fromtextfile

# 需要导入模块: from numpy import testing [as 别名]
# 或者: from numpy.testing import temppath [as 别名]
def test_fromtextfile(self):
        # Tests reading from a text file.
        fcontent = (
"""#
'One (S)','Two (I)','Three (F)','Four (M)','Five (-)','Six (C)'
'strings',1,1.0,'mixed column',,1
'with embedded "double quotes"',2,2.0,1.0,,1
'strings',3,3.0E5,3,,1
'strings',4,-1e-10,,,1
""")
        with temppath() as path:
            with open(path, 'w') as f:
                f.write(fcontent)
            mrectxt = fromtextfile(path, delimitor=',', varnames='ABCDEFG')
        self.assertTrue(isinstance(mrectxt, MaskedRecords))
        assert_equal(mrectxt.F, [1, 1, 1, 1])
        assert_equal(mrectxt.E._mask, [1, 1, 1, 1])
        assert_equal(mrectxt.C, [1, 2, 3.e+5, -1e-10]) 
开发者ID:ryfeus,项目名称:lambda-packs,代码行数:20,代码来源:test_mrecords.py

示例4: test_simple

# 需要导入模块: from numpy import testing [as 别名]
# 或者: from numpy.testing import temppath [as 别名]
def test_simple(self):
        with temppath('foo.ini') as path:
            with open(path,  'w') as f:
                f.write(simple)
            pkg = os.path.splitext(path)[0]
            out = read_config(pkg)

        assert_(out.cflags() == simple_d['cflags'])
        assert_(out.libs() == simple_d['libflags'])
        assert_(out.name == simple_d['name'])
        assert_(out.version == simple_d['version']) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:13,代码来源:test_npy_pkg_config.py

示例5: test_simple_variable

# 需要导入模块: from numpy import testing [as 别名]
# 或者: from numpy.testing import temppath [as 别名]
def test_simple_variable(self):
        with temppath('foo.ini') as path:
            with open(path,  'w') as f:
                f.write(simple_variable)
            pkg = os.path.splitext(path)[0]
            out = read_config(pkg)

        assert_(out.cflags() == simple_variable_d['cflags'])
        assert_(out.libs() == simple_variable_d['libflags'])
        assert_(out.name == simple_variable_d['name'])
        assert_(out.version == simple_variable_d['version'])
        out.vars['prefix'] = '/Users/david'
        assert_(out.cflags() == '-I/Users/david/include') 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:15,代码来源:test_npy_pkg_config.py


注:本文中的numpy.testing.temppath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。