X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dhcp.git/blobdiff_plain/5b5216809d7e7d0e78df31d274c2e97eb77be2c2..9007b014f45be76bf183371353068bab12b749f6:/pydhcplib/examples/strlist_example.py diff --git a/pydhcplib/examples/strlist_example.py b/pydhcplib/examples/strlist_example.py deleted file mode 100755 index 9a597ad..0000000 --- a/pydhcplib/examples/strlist_example.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/python - -from pydhcplib.type_strlist import strlist - - -word = strlist() -print "a0 : ",word - -word1 = strlist("azerty") -print "a1 : ",word1 - -word2 = strlist("qwerty") -print "a2 : ",word2 - -word3 = strlist([97, 122, 101, 114, 116, 121]) -print "a3 : ",word3 - -if word1 == word2 : print "test 1 : ",word1, "==",word2 -else : print "test 1 : " ,word1, "!=",word2 - -if word1 == word3 : print "test 2 : ", word1, "==",word3 -else : print "test 2 : ", word1, "!=",word3 - - -