python-pydhcplib is really Architecture: all.
[invirt/packages/python-pydhcplib.git] / examples / strlist_example.py
1 #!/usr/bin/python
2
3 from pydhcplib.type_strlist import strlist
4
5
6 word = strlist()
7 print "a0 : ",word
8
9 word1 = strlist("azerty")
10 print "a1 : ",word1
11
12 word2 = strlist("qwerty")
13 print "a2 : ",word2
14
15 word3 = strlist([97, 122, 101, 114, 116, 121])
16 print "a3 : ",word3
17
18 if word1 == word2 : print "test 1 : ",word1, "==",word2
19 else : print "test 1 : " ,word1, "!=",word2
20
21 if word1 == word3 : print "test 2 : ", word1, "==",word3
22 else : print "test 2 : ", word1, "!=",word3
23
24
25