|
|
|
|
|
by dr_zoidberg
3643 days ago
|
|
No, the .pyc files are just the source code translated to bytecode when you import the .py file (notice that running with "python somefile.py" doesn't generate a somefile.pyc, the .pyc is created when you import, from inside python or another script). .pyc files are created for "faster importing", and they remove having to parse and "compile to bytecode" the .py files. |
|