projects
/
OpenSRF.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e07eafbf5885f580afdb860185af4ab6a2304f49
[OpenSRF.git]
/
src
/
python
/
tests
/
testobj.py
1
class TestObject(object):
2
def __init__(self):
3
self.int = 1
4
self.string = "two"
5
self.array = [1,2,3,4]
6
self.dict = {'foo': 'bar', 'key': 'value'}
7
self.true = True
8
self.false = False
9
self.null = None
10
11