Lines Matching full:maxlen
115 def cram(text, maxlen):
117 if len(text) > maxlen:
118 pre = max(0, (maxlen-3)//2)
119 post = max(0, maxlen-3-pre)
1115 contents.append(self.docother(value, key, name, maxlen=70))
1208 name, mod, maxlen=70, doc=doc) + '\n')
1319 def docother(self, object, name=None, mod=None, parent=None, maxlen=None, doc=None):
1322 if maxlen:
1324 chop = maxlen - len(line)