wasm-demo/demo/ermis-f/python_m/cur/0456

47 lines
1.1 KiB
Plaintext

From: mnot at pobox.com (Mark Nottingham)
Date: Sun, 25 Apr 1999 05:18:16 GMT
Subject: pickling and unpickling on the same file?
References: <m3n1zxnyvy.fsf@froydnj.laptop.rose-hulman.edu>
Message-ID: <01c001be8edb$066c5ea0$0301a8c0@cbd.net.au>
X-UID: 456
Have you looked at the shelve module?
----- Original Message -----
From: Nathan Froyd <nathan.froyd at rose-hulman.edu>
Newsgroups: comp.lang.python
To: <python-list at cwi.nl>
Sent: Sunday, April 25, 1999 1:48
Subject: pickling and unpickling on the same file?
> Is there any way to implement the above beast? Something like:
>
> p = Pickler(file)
> u = Unpickler(file)
>
> file.seek(random_pos)
> x = u.load()
>
> z = [7, 8, 9]
> p.dump(z)
>
> would be perfect
> --
> Nathan | nathan.froyd at rose-hulman.edu |
http://www.rose-hulman.edu/~froydnj/
> God went through hell so we don't have to. ICQ:18861764 |
AOL:myrlyn007
> Avoid the gates of hell. Use Linux.
Python:"x='x=%s;x%%`x`';x%`x`"
> Evolution is a million line computer program falling into place by
accident.
>
>