Revision 2 as of 2004-04-22 19:55:31

Clear message

Using Pickle

Flying Pickle Alert!

Pickle files can be hacked. If you receive a raw pickle file over the network, don't trust it! It could have malicious code in it, that would run arbitrary python when you try to de-pickle it.

However, if you are doing your own pickle writing and reading, you're safe. (Provided no one else has access to the pickle file, of course.)

Code Example

Need some code here, when it's figured out.

   1 # Relevant Python code
   2 class Something():
   3   pass
   4 
   5 x=Something()
   6 print x

Contributors

LionKimbro

Discussion

Unable to edit the page? See the FrontPage for instructions.