示例#1
0
def save_array_to_file(array, path):
	"""
		Dumps an array to a file.
	"""
	file = open(path, "w")
	array.tofile(file)
	file.close()
示例#2
0
def save_array_to_file(array, path):
    """
        Dumps an array to a file.
    """
    file = open(path, "w")
    array.tofile(file)
    file.close()
示例#3
0
文件: utils.py 项目: aslpavel/udb
 def ArraySave (stream, array):
     array.tofile (stream)
示例#4
0
def save_array_to_file(array, path):
    file = open(path, "w")
    array.tofile(file)
    file.close()
示例#5
0
def save_array_to_file(array, path):
	file = open(path, "w")
	array.tofile(file)
	file.close()