From d35c41cc8c14b383806ce39b58b4dc9a92631ab7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 4 Apr 2010 07:36:59 +0000 Subject: [PATCH] No longer used. --- colander/interfaces.py | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/colander/interfaces.py b/colander/interfaces.py index 7fcc71b..27a0d3d 100644 --- a/colander/interfaces.py +++ b/colander/interfaces.py @@ -52,28 +52,3 @@ class Type(object): raised. """ - def pserialize(self, node, value): - """ Partially serialize a value, ignoring any missing - components. - - The description of the ``node`` and ``value`` arguments are - the same as those provided to ``serialize``. - - The return value and behavior of any partial serialization is - completely type-dependent. If partial serialization is not - applicable for a type, this method will usually be an alias - for that type's 'serialize' method. - """ - - def pdeserialize(self, node, value): - """ Partially deserialize a value, ignoring any missing - components. - - The description of the ``node`` and ``value`` arguments are - the same as those provided to ``deserialize``. - - The return value and behavior of any partial deserialization - is completely type-dependent. If partial deserialization is - not applicable for a type, this method will usually be an - alias for that type's 'deserialize' method. - """