-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsamples.py
146 lines (105 loc) · 3.45 KB
/
samples.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# -*- coding: utf-8 -*-
#
# Copyright (C) 2008 John Paulett (john -at- paulett.org)
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
#
# from https://github.com/jsonpickle/jsonpickle/raw/master/tests/samples.py
#
from jsonpickle.compat import set
class Thing(object):
def __init__(self, name):
self.name = name
self.child = None
def __repr__(self):
return 'samples.Thing("%s")' % self.name
class ThingWithSlots(object):
__slots__ = ('a', 'b')
def __init__(self, a, b):
self.a = a
self.b = b
class ThingWithProps(object):
def __init__(self, name='', dogs='reliable', monkies='tricksy'):
self.name = name
self._critters = (('dogs', dogs), ('monkies', monkies))
def _get_identity(self):
keys = [self.dogs, self.monkies, self.name]
return hash('-'.join([str(key) for key in keys]))
identity = property(_get_identity)
def _get_dogs(self):
return self._critters[0][1]
dogs = property(_get_dogs)
def _get_monkies(self):
return self._critters[1][1]
monkies = property(_get_monkies)
def __getstate__(self):
out = dict(
__identity__=self.identity,
nom=self.name,
dogs=self.dogs,
monkies=self.monkies,
)
return out
def __setstate__(self, state_dict):
self._critters = (('dogs', state_dict.get('dogs')),
('monkies', state_dict.get('monkies')))
self.name = state_dict.get('nom', '')
ident = state_dict.get('__identity__')
if ident != self.identity:
raise ValueError('expanded object does not match originial state!')
def __eq__(self, other):
return self.identity == other.identity
class DictSubclass(dict):
name = 'Test'
class ListSubclass(list):
pass
class ListSubclassWithInit(list):
def __init__(self, attr):
self.attr = attr
super(ListSubclassWithInit, self).__init__()
class SetSubclass(set):
pass
class BrokenReprThing(Thing):
def __repr__(self):
raise Exception('%s has a broken repr' % self.name)
def __str__(self):
return '<BrokenReprThing "%s">' % self.name
class Node(object):
def __init__(self, name):
self._name = name
self._children = []
self._parent = None
def add_child(self, child, index=-1):
if index == -1:
index = len(self._children)
self._children.insert(index, child)
child._parent = self
class Document(Node):
def __init__(self, name):
Node.__init__(self, name)
def __str__(self):
ret_str ='Document "%s"\n' %self._name
for c in self._children:
ret_str += repr(c)
return ret_str
def __repr__(self):
return self.__str__()
class Section(Node):
def __init__(self, name):
Node.__init__(self, name)
def __str__(self):
ret_str = 'Section "%s", parent: "%s"\n' % (self._name, self._parent._name)
for c in self._children:
ret_str += repr(c)
return ret_str
def __repr__(self):
return self.__str__()
class Question(Node):
def __init__(self, name):
Node.__init__(self, name)
def __str__(self):
return 'Question "%s", parent: "%s"\n' % (self._name, self._parent._name)
def __repr__(self):
return self.__str__()