This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes, pitrou, serhiy.storchaka, vitaly.krug
Date 2018-03-24.14:28:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1521901713.95.0.467229070634.issue33023@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy,
I don't understand what you are trying to tell me. "cannot serialize '%s' object" is used all over the interpreter, e.g. io, pickle, etree, and more. I feel it's the standard message.

Vitaly,
A lot of objects can't be copied. It's the general case for all kinds of objects that hold operating system resources (files, sockets) or wrap external C libraries (bz2, lzma, sqlite, ssl). We generally don't document that an object cannot be pickled, serialized, or copied. If documentation doesn't state that an object is copy-able or doesn't provide a dedicated copy method, than it can't be copied.
History
Date User Action Args
2018-03-24 14:28:34christian.heimessetrecipients: + christian.heimes, pitrou, serhiy.storchaka, vitaly.krug
2018-03-24 14:28:33christian.heimessetmessageid: <1521901713.95.0.467229070634.issue33023@psf.upfronthosting.co.za>
2018-03-24 14:28:33christian.heimeslinkissue33023 messages
2018-03-24 14:28:33christian.heimescreate