7

I have no understanding of what happened here. Could somebody please explain why Python3.4 "killed" this script:

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)

Here is the output when I ran the script in my terminal:

[jdoe@edne01 ~]$ cd PycharmProjects/ImageReader
[jdoe@edne01 ImageReader]$ python3.4 DataCompiler.py 
Killed
[jdoe@edne01 ImageReader]$

So what the hell happened, can anybody explain?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Troll_Hunter
  • 465
  • 2
  • 9
  • 15

1 Answers1

-3

This happened for me too while reading large files. You can try rebooting your system and this should stop.

Pyzard
  • 451
  • 3
  • 14