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 ddriddle
Recipients ddriddle
Date 2015-04-24.16:45:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429893933.08.0.150501464744.issue24054@psf.upfronthosting.co.za>
In-reply-to
Content
test_linecache.py reads from three files namely inspect_fodder.py, inspect_fodder2.py, and mapping_tests.py. It reads the py files directly as text files. This patch copies these files to linecache_fodder, linecache_fodder2, and linecache_mapping_fodder respectively, and updates test_linecache.py accordingly.

The reason I do this is so that the these files are not compiled. This is desirable for me because I use linecache2 on python 2.7. Python 2.7 can not compile inspect_fodder2.py nor is it necessary as this file is only used as a text file never as an object file in the test_linecache.py tests.

This issue came up for me when I attempted to make an RPM out of linecache2. rpmbuild compiles all py files in the rpm and fails when it tries to compile inspect_fodder2.py. If these files have the .py removed from the test files then they will not be compiled which fixes my issue. Nor do they need to be compiled to successfully run the test_linecache.py tests.
History
Date User Action Args
2015-04-24 16:45:33ddriddlesetrecipients: + ddriddle
2015-04-24 16:45:33ddriddlesetmessageid: <1429893933.08.0.150501464744.issue24054@psf.upfronthosting.co.za>
2015-04-24 16:45:33ddriddlelinkissue24054 messages
2015-04-24 16:45:32ddriddlecreate