Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(17) | Call(17) | Derive(0) | Import(0)
x.__str__() <==> str(x)
src/s/u/surf-HEAD/surf/resource/value.py surf(Download)
def __str__(self): self.__prepare_values() return list.__str__(self) def __repr__(self):
src/s/a/sage-HEAD/src/sage/structure/sequence.py sage(Download)
return '[\n' + ',\n'.join([str(x) for x in self]) + '\n]' else: return list.__str__(self) def category(self):
src/t/h/Theano-0.6.0/theano/gof/opt.py Theano(Download)
def __str__(self): return "SeqOpt(%s)" % list.__str__(self) def __repr__(self): return list.__repr__(self)
src/t/h/Theano-HEAD/theano/gof/opt.py Theano(Download)
def __str__(self): return "SeqOpt(%s)" % list.__str__(self) def __repr__(self): return list.__repr__(self)
src/h/e/herculeum-0.12/src/pyherc/ai/heapset.py herculeum(Download)
def __str__(self): return list.__str__(self) + str(self.pos_dict) + "pops %d"%self.pop_begin
src/p/y/pyherc-HEAD/src/pyherc/ai/heapset.py pyherc(Download)
def __str__(self): return list.__str__(self) + str(self.pos_dict) + "pops %d"%self.pop_begin
src/m/u/musixmatch-0.9/musixmatch/base.py musixmatch(Download)
def __str__(self): return list.__str__(self) def __add__(self, iterable): collection = self.copy()
src/d/i/diamond-3.4.339/src/collectors/jcollectd/collectd_network.py diamond(Download)
def __str__(self): return "%s %s" % (Data.__str__(self), list.__str__(self)) def interpret_opcodes(iterable):
src/d/i/Diamond-HEAD/src/collectors/jcollectd/collectd_network.py Diamond(Download)
def __str__(self): return "%s %s" % (Data.__str__(self), list.__str__(self)) def interpret_opcodes(iterable):
src/n/o/Node-HEAD/src/ovirt/node/utils/__init__.py Node(Download)
def __str__(self): return self.build_str(["title"], {"elements": list.__str__(self)}) def step(self): try:
1 | 2 Next