tests: Add tests for op special meths, ubinascii, complex.

This commit is contained in:
Damien George
2015-03-02 12:47:44 +00:00
parent 18fd7e8305
commit 2af921fb51
5 changed files with 49 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
# set object with special methods
s = {1, 2}
print(s.__contains__(1))
print(s.__contains__(3))