예제 #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()