fixed failed type tests

This commit is contained in:
David Halter
2012-08-28 00:51:37 +02:00
parent 49ec21a404
commit 15ff3d6af1

View File

@@ -155,6 +155,15 @@ class frozenset():
return self
class dict():
def __init__(self, **elements):
self.__elements = elements
def clear(self):
# has a strange docstr
pass
#--------------------------------------------------------
# basic types
#--------------------------------------------------------