Don't want to serialize a variable of object

I

Iyer, Prasad C

Hi,
I got a class which I need to serialize, except for couple of variable.
i.e.

import cPickle as p
class Color:
def __init__(self):
print "hello world"
self.x=10
self.somechar="this are the characters"
color=Color()
f=file('poem.txt', 'w')
p.dump(color, f)
f.close()

How do I serialize the object color without serializing the x and
somechar variables?
Is there any modifier which prevents the variable from being serialized.




Another question:
Is there a concept of private variables?



regards
prasad chandrasekaran










--- Cancer cures smoking
#-----Original Message-----
#From: [email protected]
#[mailto:p[email protected]] On
#Behalf Of (e-mail address removed)
#Sent: Tuesday, October 18, 2005 11:00 AM
#To: (e-mail address removed)
#Subject: Python-list Digest, Vol 25, Issue 322
#
#Send Python-list mailing list submissions to
# (e-mail address removed)
#
#To subscribe or unsubscribe via the World Wide Web, visit
# http://mail.python.org/mailman/listinfo/python-list
#or, via email, send a message with subject or body 'help' to
# (e-mail address removed)
#
#You can reach the person managing the list at
# (e-mail address removed)
#
#When replying, please edit your Subject line so it is more specific
#than "Re: Contents of Python-list digest..."

This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.
 
D

Duncan Booth

How do I serialize the object color without serializing the x and
somechar variables?
Is there any modifier which prevents the variable from being serialized.
See the pickle documentation. The example given in the documentation
pickles a class while excluding one of its attributes.

http://www.python.org/doc/2.4.2/lib/pickle-example.html
Another question:
Is there a concept of private variables?

'private variables' can mean either of two things: hiding the variables to
prevent accidental naming conflicts in subclasses, or security to prevent
malicious manipulation of a class's internal state.

Python provides the former (to a certain extent) when you give an attribute
a name prefixed with a double underscore, but makes no attempt to provide
the latter. Some other languages (such as C++) make no attempt to provide
the former and a completely inadequate attempt at the latter.

In other words: Python has a concept of private variables, but it is
different than in some other languages, and if you google past threads you
can find endless discussions on the pro's and con's of the Python approach.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,904
Latest member
HealthyVisionsCBDPrice

Latest Threads

Top