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.

classification
Title: AttributeErrors after import in multithreaded environment
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.4
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: boytsovea, brett.cannon, eric.snow, larry, ncoghlan, serhiy.storchaka, vstinner
Priority: normal Keywords:

Created on 2017-07-14 12:05 by boytsovea, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
mod.zip boytsovea, 2017-07-14 12:05 example which demonstrates the issue
Messages (4)
msg298349 - (view) Author: Evgeny Boytsov (boytsovea) Date: 2017-07-14 12:05
Hello everybody!

We are using Python 3.4 running at CentOS 7 x64 and experiencing some problems with simulatenous import of modules from different threads of execution.
The attached archive contains simple example, which demonstrates the issue. 

There is python package called "mod". It contains two sub-packages called "foo" and "bar". They, in turn, contain modules "foo" and "bar" respectively. 

Another package called "threader" contains function "run_threads()", which runs two threads of execution (using threading) and joins them.
First thread of execution imports "mod.foo.foo" from "mod" and calls its function. The second thread does the same, but for module "mod.bar.bar".

Finally, there is module "test.py" which calls "threader.run_threads()" and when it returns, tries to import "mod.foo.foo" and call its function.

To reproduce the bug you need to run "test.py" for several times.

Most of the launches complete successfully. But sometimes we encounter AttributeError during import like that:

'module' object has no attribute 'foo'


We've done some investigation in order to clarify this behaviour and added import hook (you can see it in test.py), which logs all import that take place. 
When the launch completes successfully, the order of imports looks like that:

$ python3 test.py 
[py][import] threader
[py][import] threading
[py][import] time
[py][import] traceback
[py][import] linecache
[py][import] tokenize
[py][import] collections
[py][import] _collections
[py][import] operator
[py][import] _operator
[py][import] keyword
[py][import] heapq
[py][import] itertools
[py][import] _heapq
[py][import] reprlib
[py][import] re
[py][import] sre_compile
[py][import] _sre
[py][import] sre_parse
[py][import] sre_constants
[py][import] _locale
[py][import] copyreg
[py][import] token
[py][import] mod
[py][import] mod.foo
[py][import] mod.bar
[py][import] mod.foo.foo
[py][import] mod.bar.bar
print from foo
print from bar

When the issue arises we see the following:

$ python3 test.py 
[py][import] threader
[py][import] threading
[py][import] time
[py][import] traceback
[py][import] linecache
[py][import] tokenize
[py][import] collections
[py][import] _collections
[py][import] operator
[py][import] _operator
[py][import] keyword
[py][import] heapq
[py][import] itertools
[py][import] _heapq
[py][import] reprlib
[py][import] re
[py][import] sre_compile
[py][import] _sre
[py][import] sre_parse
[py][import] sre_constants
[py][import] _locale
[py][import] copyreg
[py][import] token
[py][import] mod
[py][import] mod.foo
[py][import] mod
[py][import] mod.bar
[py][import] mod.foo.foo
[py][import] mod.bar.bar
thread of foo: import error 'module' object has no attribute 'foo'
print from bar


That is when the issue arises there are two imports of package "mod".

And the most confusing thing about this scenario is that even after completion of "run_threads()" interpreter can not import "mod.foo.foo" and gives the same AttributeErrors in for-loop inside test.py.
msg298387 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-07-15 06:37
This may be a duplicate of issue30891.

But 3.4 is in security fixes only mode. And this issue doesn't look like a security issue.
msg298393 - (view) Author: Evgeny Boytsov (boytsovea) Date: 2017-07-15 11:15
The same behaviour is reprodusible at ubuntu 16.04 with python 3.5.2. And a colleague of mine said that he was able to reproduce the issue with python 3.6.
msg298394 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2017-07-15 11:28
I'm closing this.  It isn't a security issue, so it's not applicable for 3.4.  3.5 is about to close for bugfixes too, so you'd have to work very... quickly.

If this applies to 3.6, figure out whether or not it's a duplicate of Issue #30891.  If it isn't, please create a new issue, and only flag 3.6+.
History
Date User Action Args
2022-04-11 14:58:49adminsetgithub: 75112
2017-07-15 11:28:57larrysetstatus: open -> closed

messages: + msg298394
stage: resolved
2017-07-15 11:15:31boytsoveasetmessages: + msg298393
2017-07-15 06:37:33serhiy.storchakasetnosy: + larry, eric.snow, serhiy.storchaka, vstinner, brett.cannon, ncoghlan
messages: + msg298387
2017-07-14 12:05:09boytsoveacreate