这个"被杀"的错误在Python中意味着什么?

Tro*_*ter 6 python image kill pickle

我不明白这里发生了什么.有人可以解释为什么Python3.4"杀死"了这个脚本:

def __init__(self, target, data_flatten, data, 
              tf, hlf, white, robert, sobel, scharr):
    self.data_flatten = data_flatten
    self.target = target
    self.data = data
    self.tf = tf
    self.hlf = hlf
    self.white = white
    self.robert = robert
    self.sobel = sobel
    self.scharr = scharr

with open('PI0_Electron_Mixed_2000.pickle', 'wb') as output:
    pickle.dump(PI0_Electron_Mixed_2000, output)
Run Code Online (Sandbox Code Playgroud)

这是我在终端中运行脚本时的输出:

[jdoe@edne01 ~]$ cd PycharmProjects/ImageReader
[jdoe@edne01 ImageReader]$ python3.4 DataCompiler.py 
Killed
[jdoe@edne01 ImageReader]$
Run Code Online (Sandbox Code Playgroud)

那么到底发生了什么,有人可以解释一下吗?

Pyz*_*ard -3

我在读取大文件时也发生过这种情况。您可以尝试重新启动系统,这应该会停止。