]> granicus.if.org Git - python/commit
module_repr(): Instead of fixing the maximum buf size to 400,
authorBarry Warsaw <barry@python.org>
Thu, 16 Aug 2001 20:39:24 +0000 (20:39 +0000)
committerBarry Warsaw <barry@python.org>
Thu, 16 Aug 2001 20:39:24 +0000 (20:39 +0000)
commit2907fe6ce7376e73d84c8a29dedd37d8b3e4a225
tree5b6037aed9b5b2e8cefce3e8f8f26eb353db3eae
parente791a6421fae40dd7aae1f67fd6b6d737c510af7
module_repr(): Instead of fixing the maximum buf size to 400,
    calculate it on the fly.  This way even modules with long package
    names get an accurate repr instead of a truncated one.  The extra
    malloc/free cost shouldn't be a problem in a repr function.

    Closes SF bug #437984
Objects/moduleobject.c