Don't want to serialize a variable of object

Iyer, Prasad C prasad.c.iyer at capgemini.com
Tue Oct 18 02:28:41 EDT 2005


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: python-list-bounces+prasad.c.iyer=capgemini.com at python.org
#[mailto:python-list-bounces+prasad.c.iyer=capgemini.com at python.org] On
#Behalf Of python-list-request at python.org
#Sent: Tuesday, October 18, 2005 11:00 AM
#To: python-list at python.org
#Subject: Python-list Digest, Vol 25, Issue 322
#
#Send Python-list mailing list submissions to
#	python-list at python.org
#
#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
#	python-list-request at python.org
#
#You can reach the person managing the list at
#	python-list-owner at python.org
#
#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.




More information about the Python-list mailing list