tests: Remove builtin_dict test

This is essentially a duplicate of obj_dict.py
urandom
stijn 2016-01-14 09:35:10 +01:00 committed by Paul Sokolovsky
parent c13b2f2d00
commit dea585f8ae
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
class A:
def __init__(self):
self.a=1
self.b=2
try:
d=A().__dict__
print(d['a'])
print(d['b'])
except AttributeError:
print("SKIP")