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 Decorater
Recipients Decorater, docs@python
Date 2017-12-17.20:09:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513541374.74.0.213398074469.issue32353@psf.upfronthosting.co.za>
In-reply-to
Content
It seems that 1 thing that bites me is that there is no section on the embedding docs about limitations to using frozen modules in them.

So lets say for example your program has this like in the main function on an embedded python:

```c
  PyRun_SimpleString("import mymodule");
```

And lets say ``mymodule`` is supposed to be an frozen module in that embedded interpreter named ``myprogram``

It would fail to work because it wont be able to find ``mymodule`` when it really should. This doc change should help fix that senerio and hopefully suggest an fix to that senerio as well.
History
Date User Action Args
2017-12-17 20:09:34Decoratersetrecipients: + Decorater, docs@python
2017-12-17 20:09:34Decoratersetmessageid: <1513541374.74.0.213398074469.issue32353@psf.upfronthosting.co.za>
2017-12-17 20:09:34Decoraterlinkissue32353 messages
2017-12-17 20:09:34Decoratercreate