This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bob.ippolito
Recipients
Date 2003-07-15.01:58:10
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
TextDoc.spill calls inherited Doc.document(getattr(object, 
name), name, mod, object)
Doc.document builds args=(getattr(object, name), name, 
mod, object)
Doc.document calls TextDoc.docother(self, *args)
args[3] maps to maxlen=None in TextDoc.docother.. which 
expects it to be an integer (I think 70 in the other spill 
functions), but it's really just an arbitrary object.. so an 
exception gets thrown.

TextDoc.spill (line 1064) should be changed to call 
self.document(getattr(object, name), name, mod) instead, 
as the object is not appropriate to be used as maxlen.
History
Date User Action Args
2008-01-20 09:56:11adminlinkissue771334 messages
2008-01-20 09:56:11admincreate