Hi, > I just had a chance to merge this patch but I have one question: This > version leaves behind a file called "docerator.pyc" -- why is that? > Is this necessary (if so I'll add it to the "clean:" rule in the > makefile) or can you get rid of it completely?
When python processes the `import docerator` statement in make_icons.py, it loads docerator.py and compiles it into bytecode. The bytecode is written into docerator.pyc, so that imports of docerator are faster in the future (so this acts purely as a cache). Python does this. Looks like it's possible to tell Python to not create those files ( http://stackoverflow.com/questions/154443/how-to-avoid-pyc-files ), but you can simply add it to the "clean:" rule as well. That's probably better. Nico --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_mac" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
