Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(6) | Call(6) | Derive(0) | Import(0)
src/p/y/pymc-2.3.2/pymc/Container.py pymc(Download)
def __init__(self, iterable): self.new_iterable = set(iterable) file_items(self, self.new_iterable) ContainerBase.__init__(self, self.new_iterable) self._value = list(self)
Even the Python-C API makes this impossible by checking that a tuple is new before allowing you to change one of its elements.""") ContainerBase.__init__(self, iterable) file_items(self, iterable) self._value = list(self)
def __init__(self, iterable): list.__init__(self, iterable) ContainerBase.__init__(self, iterable) file_items(self, iterable) self._value = list(self)
def __init__(self, iterable): dict.__init__(self, iterable) ContainerBase.__init__(self, iterable) self._value = copy(iterable) file_items(self, iterable)
self._value = copy(self) ContainerBase.__init__(self, input) self.OCValue = OCValue(self)