本文整理汇总了Python中numpy.who方法的典型用法代码示例。如果您正苦于以下问题:Python numpy.who方法的具体用法?Python numpy.who怎么用?Python numpy.who使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类numpy
的用法示例。
在下文中一共展示了numpy.who方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_who_with_0dim_array
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import who [as 别名]
def test_who_with_0dim_array(self):
# ticket #1243
import os
import sys
oldstdout = sys.stdout
sys.stdout = open(os.devnull, 'w')
try:
try:
np.who({'foo': np.array(1)})
except Exception:
raise AssertionError("ticket #1243")
finally:
sys.stdout.close()
sys.stdout = oldstdout
示例2: test_who_with_0dim_array
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import who [as 别名]
def test_who_with_0dim_array(self, level=rlevel):
# ticket #1243
import os
import sys
oldstdout = sys.stdout
sys.stdout = open(os.devnull, 'w')
try:
try:
np.who({'foo': np.array(1)})
except:
raise AssertionError("ticket #1243")
finally:
sys.stdout.close()
sys.stdout = oldstdout
示例3: test_who_with_0dim_array
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import who [as 别名]
def test_who_with_0dim_array(self, level=rlevel) :
"""ticket #1243"""
import os, sys
oldstdout = sys.stdout
sys.stdout = open(os.devnull, 'w')
try:
try:
tmp = np.who({'foo' : np.array(1)})
except:
raise AssertionError("ticket #1243")
finally:
sys.stdout.close()
sys.stdout = oldstdout