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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, atuining, r.david.murray
Date 2012-11-13.20:09:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352837345.41.0.0851468713157.issue16467@psf.upfronthosting.co.za>
In-reply-to
Content
I tried to remove all references to "#include importlib.h" and _Py_M__importlib, and added the lines in _AddBaseModules():

    self.AddAlias("_frozen_importlib", "importlib._bootstrap")
    self.IncludeModule("_frozen_importlib")

Even if it's not optimal (the content importlib.h is recomputed by cx_Freeze), it's much better...  The resulting binary I made fails with:
  Fatal Python error: Py_Initialize: Unable to get the locale encoding
  ImportError: No module named 'encodings'
But it's probably because my Python3 is not "installed" properly.
History
Date User Action Args
2012-11-13 20:09:05amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, atuining, r.david.murray
2012-11-13 20:09:05amaury.forgeotdarcsetmessageid: <1352837345.41.0.0851468713157.issue16467@psf.upfronthosting.co.za>
2012-11-13 20:09:05amaury.forgeotdarclinkissue16467 messages
2012-11-13 20:09:04amaury.forgeotdarccreate