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

@@ -12,5 +12,3 @@ print(d['1'], d['2'], d['3'])
d2 = dict(d)
print('2' in d2)
print(id(d) != id(d2), d == d2)
print(d.__getitem__('2'))