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

Lines Matching defs:update

148         result._data.update(self._data)
342 # The main loop for update() and the subclass __init__() methods.
345 # Use the fast update() method when a dictionary is available.
347 data.update(iterable._data)
429 """Update a set with the union of itself and another."""
431 self._data.update(other._data)
435 """Update a set with the union of itself and another."""
439 """Update a set with the intersection of itself and another."""
445 """Update a set with the intersection of itself and another."""
452 """Update a set with the symmetric difference of itself and another."""
458 """Update a set with the symmetric difference of itself and another."""
487 # Python dict-like mass mutations: update, clear
489 def update(self, iterable):