Re: C and C++ Style checking now enforced
John Emmas <[email protected]>
| Newsgroups | gmane.comp.audio.ardour.devel |
|---|---|
| Message-ID | <[email protected]> |
On 12/05/2015 20:09, John Emmas wrote: > > Grrr... things have started going wrong already :-( > > [...] 'codegen.py' gets turned into 'codegen.pyc'. > > Unfortunately (after upgrading to python 3.3) the compiled binary now > gets called 'codegen.cpython-33.pyc' (and likewise for several other > modules!!!) > I got sent this link which explains the new situation:- http://raulcd.com/how-python-caches-compiled-bytecode.html Apparently, the ".pyc" files get used as caches to speed up python's execution at run time. So the name change shouldn't have an adverse effect anywhere else. Phew! John