[issue31266] attribute error

2017-08-23 Thread emin mamedov
emin mamedov added the comment: Thank you Peter, problem has fixed. I think, python interpreter must understand if a "temp1.py" will start in same directory with file "re.py", this is not a native module for python and interpreter can ignore re.py from user directory and etc. -- resol

[issue31266] attribute error

2017-08-23 Thread Peter Otten
Peter Otten added the comment: You have probably written your own re.py file which shadows the one in the standard library. Once you remove or rename your re.py the error should go away. -- nosy: +peter.otten ___ Python tracker

[issue31266] attribute error

2017-08-23 Thread emin mamedov
New submission from emin mamedov: Hello! I am just write some program with "string module", after starting my program python give me error about "re module". My program is a tutorial from DrapsTV from Youtube. Error -->> Traceback (most recent call last): File "temp1.py", line 1, in fro