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

Lines Matching refs:def

24 def _hasattr(C, attr):
36 def __hash__(self):
40 def __subclasshook__(cls, C):
59 def __iter__(self):
64 def __subclasshook__(cls, C):
76 def next(self):
80 def __iter__(self):
84 def __subclasshook__(cls, C):
95 def __len__(self):
99 def __subclasshook__(cls, C):
110 def __contains__(self, x):
114 def __subclasshook__(cls, C):
125 def __call__(self, *args, **kwds):
129 def __subclasshook__(cls, C):
150 def __le__(self, other):
160 def __lt__(self, other):
165 def __gt__(self, other):
170 def __ge__(self, other):
175 def __eq__(self, other):
180 def __ne__(self, other):
184 def _from_iterable(cls, it):
192 def __and__(self, other):
197 def isdisjoint(self, other):
204 def __or__(self, other):
210 def __sub__(self, other):
218 def __xor__(self, other):
228 def _hash(self):
276 def add(self, value):
281 def discard(self, value):
285 def remove(self, value):
291 def pop(self):
301 def clear(self):
309 def __ior__(self, it):
314 def __iand__(self, it):
319 def __ixor__(self, it):
332 def __isub__(self, it):
357 def __getitem__(self, key):
360 def get(self, key, default=None):
367 def __contains__(self, key):
375 def iterkeys(self):
379 def itervalues(self):
384 def iteritems(self):
389 def keys(self):
393 def items(self):
397 def values(self):
404 def __eq__(self, other):
409 def __ne__(self, other):
414 def __init__(self, mapping):
417 def __len__(self):
420 def __repr__(self):
427 def _from_iterable(self, it):
430 def __contains__(self, key):
433 def __iter__(self):
441 def _from_iterable(self, it):
444 def __contains__(self, item):
453 def __iter__(self):
460 def __contains__(self, value):
466 def __iter__(self):
483 def __setitem__(self, key, value):
487 def __delitem__(self, key):
492 def pop(self, key, default=__marker):
506 def popitem(self):
518 def clear(self):
526 def update(*args, **kwds):
552 def setdefault(self, key, default=None):
574 def __getitem__(self, index):
577 def __iter__(self):
587 def __contains__(self, value):
593 def __reversed__(self):
597 def index(self, value):
606 def count(self, value):
626 def __setitem__(self, index, value):
630 def __delitem__(self, index):
634 def insert(self, index, value):
638 def append(self, value):
642 def reverse(self):
648 def extend(self, values):
653 def pop(self, index=-1):
661 def remove(self, value):
667 def __iadd__(self, values):