X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=manifold%2Fmanifoldapi.py;fp=manifold%2Fmanifoldapi.py;h=ee1f82ecfc0fe7a16d7243b1a6aa8fda33410b38;hb=d45cc579de128aecc723e387023f92b62165ad59;hp=1ffcacee0725669778edd628436fb496744cbd04;hpb=ab31a1696bffa3f8cc54420e958dcab5775a95d0;p=myslice.git diff --git a/manifold/manifoldapi.py b/manifold/manifoldapi.py index 1ffcacee..ee1f82ec 100644 --- a/manifold/manifoldapi.py +++ b/manifold/manifoldapi.py @@ -32,6 +32,12 @@ class ManifoldAPI: def __repr__ (self): return "ManifoldAPI[%s]"%self.url + def _print_value (self, value): + print "+++",'value', + if isinstance (value,list): print "[%d]"%len(value), + elif isinstance (value,dict): print "{%d}"%len(value), + print mytruncate (value,80) + # a one-liner to give a hint of what the return value looks like def _print_result (self, result): if not result: print "[no/empty result]" @@ -41,7 +47,8 @@ class ManifoldAPI: print "result is a dict with %d keys : %s"%(len(result),result.keys()) for (k,v) in result.iteritems(): if v is None: continue - print '+++',k,':',mytruncate (v,60) + if k=='value': self._print_value(v) + else: print '+++',k,':',mytruncate (v,30) else: print "[dont know how to display result] %s"%result # xxx temporary code for scaffolding a ManifolResult on top of an API that does not expose error info