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 Jurko.Gospodnetić, barry, brett.cannon, eric.snow, ncoghlan, ned.deily, r.david.murray
Date 2014-03-12.14:29:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394634554.09.0.581356626001.issue20884@psf.upfronthosting.co.za>
In-reply-to
Content
Depending on what cx_Freeze is doing with packages, I wnder if this What's New 3.4 porting note is relevant:

  * Frozen packages no longer set ``__path__`` to a list containing the package
  name, they now set it to an empty list.  The previous behavior could cause
  the import system to do the wrong thing on submodule imports if there was
  also a directory with the same name as the frozen package.  The correct way
  to determine if a module is a package or not is to use``hasattr(module,
  '__path__')`` (:issue:`18065`).
History
Date User Action Args
2014-03-12 14:29:14r.david.murraysetrecipients: + r.david.murray, barry, brett.cannon, ncoghlan, ned.deily, Jurko.Gospodnetić, eric.snow
2014-03-12 14:29:14r.david.murraysetmessageid: <1394634554.09.0.581356626001.issue20884@psf.upfronthosting.co.za>
2014-03-12 14:29:14r.david.murraylinkissue20884 messages
2014-03-12 14:29:14r.david.murraycreate