Issue1604

classification
Title: PyBuiltinCallable.Info should be serializable
Type: crash Severity: minor
Components: Core Versions: 2.5.1, 2.5.0
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: zyasoft Nosy List: akruis, zyasoft
Priority: Keywords: patch

Created on 2010-05-04.12:28:18 by akruis, last changed 2010-08-14.18:53:23 by zyasoft.

Files
File name Uploaded Description Edit Remove
PyBuiltinCallable.diff akruis, 2010-05-04.12:28:17 Patch for this issue: diff against rev 7056
Messages
msg5758 (view) Author: Anselm Kruis (akruis) Date: 2010-05-04.12:28:15
org.python.core.PyBuiltinCallable is declared to be serializable, but contains a field of type org.python.core.PyBuiltinCallable.Info, which is not serializable. Therefore serialization of a PyBuiltinCallable fails.

The attached patch declares the Info interface to extend java.io.Serializable. The Implementations of this interface are already serializable.
msg5957 (view) Author: Jim Baker (zyasoft) Date: 2010-08-14.18:53:23
Patch applied in r7091
History
Date User Action Args
2010-08-14 18:53:23zyasoftsetstatus: open -> closed
resolution: fixed
messages: + msg5957
2010-05-04 22:21:47zyasoftsetassignee: zyasoft
nosy: + zyasoft
2010-05-04 12:28:18akruiscreate