[issue26693] Exception exceptions.AttributeError '_shutdown' in

2016-04-05 Thread skydoom
skydoom added the comment: sorry Martin, you are right, my original title was simply (and wrongly) copied over from the issue 1947. You get my identical error message in your post. -- ___ Python tracker __

[issue26693] Exception exceptions.AttributeError '_shutdown' in

2016-04-05 Thread skydoom
skydoom added the comment: I print out the threading.__file__ and can see it's "${PYTHONHOME}/lib/python3.5/threading.py" . I don't have any other "threading.py" elsewhere. so what should I do? -- ___ Python tracker

[issue26693] Exception exceptions.AttributeError '_shutdown' in

2016-04-04 Thread Martin Panter
Martin Panter added the comment: I am seeing an AssertionError, but no AttributeError. In your original post you did mention AssertionError, but that contradicts the report title. Please clarify what the problem is. $ CFLAG="$(python3.5m-config --includes)" $ LDFLAG="$(python3.5m-config --ldfl

[issue26693] Exception exceptions.AttributeError '_shutdown' in

2016-04-04 Thread Zachary Ware
Zachary Ware added the comment: After your `import threading` line, try `print(threading.__file__)`. The path should be something like `/usr/local/lib/python3.4/threading.py`; if it's not (particularly if the current directory is part of the path), you've found the source of your problem, and

[issue26693] Exception exceptions.AttributeError '_shutdown' in

2016-04-04 Thread skydoom
skydoom added the comment: This is how I compile my code: CFLAG is obtained from `python3.5m-config --includes` LDFLAG is obtained from `"python-3.5m-config --ldflags` g++ ${CFLAG} ${LDFLAG} test2.C I am running on Linux. -- ___ Python tracker

[issue26693] Exception exceptions.AttributeError '_shutdown' in

2016-04-04 Thread skydoom
New submission from skydoom: I did a search and find the issue 1947, however it's set to "not a bug". In its last note, it's suggested a 'packaging/environment issue'. But since I can reliably reproduce the issue with the "official python package"(that installed by the system, such as I am not