I'm using cPickle to save some data to a file.
save_data = open('data/mapdata.bullet', 'wb')
save_data.write(pickle.dumps(data))
save_data.close()
os._exit(1)
The data consists of lists and dicts and various other stuff which takes few seconds to generate, and I want to simply have it precompiled so that debugging other parts of my code is faster when running the python script. But now, for some reason it saves the file as mapdata.bullet.u1conflict and I can't load it. Any clues as to what the reason for this might be?