'threading' object has no attribute 'Thread'

multithreading, python

Solution

Check that you have not named your script `threading.py`

Problem

I have imported threading module in python for doing some threading stuffs. But it says threading module has no attribute 'Thread'. What is the problem?

Original source