Home | History | Annotate | Download | only in python2.7

Lines Matching full:none

4     def __init__(self, dict=None, **kwargs):
6 if dict is not None:
16 __hash__ = None # Avoid Py3k warning
46 def update(self, dict=None, **kwargs):
47 if dict is None:
58 def get(self, key, failobj=None):
62 def setdefault(self, key, failobj=None):
73 def fromkeys(cls, iterable, value=None):
126 def setdefault(self, key, default=None):
151 def update(self, other=None, **kwargs):
153 if other is None:
166 def get(self, key, default=None):
174 if other is None: