JeffHoogland / qAndora

Pandora player written in Python and QT that uses VLC as a streaming backend
Other
16 stars 2 forks source link

Remove Python bytecode #1

Closed chuckharmston closed 10 years ago

chuckharmston commented 10 years ago

The notion that Python is a fully interpreted language isn't exactly correct. As an optimization, the interpreter will compile the source files into bytecode, so it doesn't need to interpret that code directly each time its run. It's pretty easy for the bytecode files to get out of sync with their cooresponding source files, so it's considered a best practice to not include these files in repositories.

This commit:

JeffHoogland commented 10 years ago

Ahh yea - I knew that. Just always forgot to remove those before I commit. Thanks for the clean up.