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 r.david.murray
Recipients Claudiu.Popa, r.david.murray, serhiy.storchaka
Date 2013-07-25.18:57:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374778637.36.0.847926329448.issue17818@psf.upfronthosting.co.za>
In-reply-to
Content
pyclbr is parsing the source code, and since _Aifc_params is not a class, it does not get detected.  So we just need to add it to the ignore list in the pyclbr test.

I'm also getting this when I run the test with your patch applied:

/home/rdmurray/python/p34/Lib/unittest/case.py:496: ResourceWarning: unclosed file <_io.BufferedReader name='@test_9764_tmp'>
  testMethod()

Looks like you are missing a close or two.

Oh, and it occurs to me that _Aifc_params doesn't follow pep8.  aifc should either be all lower case or, if you are viewing it as a class, it should be _AIFCParams.
History
Date User Action Args
2013-07-25 18:57:17r.david.murraysetrecipients: + r.david.murray, Claudiu.Popa, serhiy.storchaka
2013-07-25 18:57:17r.david.murraysetmessageid: <1374778637.36.0.847926329448.issue17818@psf.upfronthosting.co.za>
2013-07-25 18:57:17r.david.murraylinkissue17818 messages
2013-07-25 18:57:17r.david.murraycreate