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 brett.cannon
Recipients Jurko.Gospodnetić, barry, brett.cannon, eric.snow, ncoghlan, ned.deily, r.david.murray, takluyver
Date 2014-03-13.01:40:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAP1=2W5qf_HWAx9gs1bR4wz_4H0ieL+W3qah25fxJYomf8hiyw@mail.gmail.com>
In-reply-to <CADiSq7coifJMwUxmwiC3Ga58ryW=sZpDqCkqh_cvitWGqQOnPw@mail.gmail.com>
Content
On Mar 12, 2014 6:04 PM, "Nick Coghlan" <report@bugs.python.org> wrote:
>
>
> Nick Coghlan added the comment:
>
> I'm not sure Brett's plan is such a great idea. If you look at the file
> attributes in my demo above, they include a leading path element (based on
> the executable location), so it *is* possible to use the pkgutil data
> access APIs sensibly from a frozen module (and even when there's no path
> component, I believe the recommended way of invoking pkgutil would fall
> back to the current directory).

But the fact that has any meaning is dumb luck. Why would anyone but
CPython partially freeze a package? If you go to the trouble to freeze a
module in a package you are probably going to freeze it all, not just a
subset like we do.

>
> So I don't think we should decide what to do without first comparing the
> behaviour of frozen pkgutil.get_data dependent code between 3.3 and 3.4.

I'm not seeing a use-case here. If you're freezing your code you are
typically doing it to avoid shipping files or protecting code. If you're
doing it to avoid files then you won't want to have data files lying around
either. And if you are doing it to hide code then you are probably not
going to want your data files exposed as that could also be valuable IP.

And that path being absolute is a 3.4 thing so there is not
backwards-compatibility there.

>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue20884>
> _______________________________________
History
Date User Action Args
2014-03-13 01:40:44brett.cannonsetrecipients: + brett.cannon, barry, ncoghlan, ned.deily, r.david.murray, Jurko.Gospodnetić, eric.snow, takluyver
2014-03-13 01:40:44brett.cannonlinkissue20884 messages
2014-03-13 01:40:43brett.cannoncreate