Re: PEP for the removal of PYO files

Antoine Pitrou <[email protected]> Sat, 28 Feb 2015 18:16:01 +0100
Newsgroups gmane.comp.python.import
Message-ID <20150228181601.262eaba1@fsol>
On Sun, 1 Mar 2015 03:13:20 +1000
Nick Coghlan <[email protected]> wrote:
> On 1 March 2015 at 02:57, Antoine Pitrou <[email protected]> wrote:
> > On Fri, 27 Feb 2015 17:06:59 +0000
> > Brett Cannon <[email protected]> wrote:
> >>
> >> A period was chosen over a hyphen as a separator so as to distinguish
> >> clearly that the optimization level is not part of the interpreter
> >> version as specified by the cache tag. It also lends to the use of
> >> the period in the file name to delineate semantically different
> >> concepts.
> >
> > Indeed but why would other implementations have to mimick CPython here?
> > Perhaps the whole idea of differing "optimization" levels doesn't make
> > sense for them.
> 
> Could Numba potentially use it for JIT priming?

We'll probably want something like that one day, but we wouldn't
necessarily use the same file structure - Numba currently works at the
function level, not at the module level.

In other words, the PEP is entirely neutral for us.

Regards

Antoine.