Guest User

Untitled

a guest
Oct 26th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class MyList(list):
  2. def some_function(self):
  3. pass
  4.  
  5. >>> f = MyList()
  6. >>> .. bunch of list stuff ...
  7. >>> cPickle.dump(f,open('somefile','w'))
  8.  
  9. >>> cPickle.load(open('somefile'))
Add Comment
Please, Sign In to add comment