Justine Tunney

Results 533 comments of Justine Tunney

Yes using those `.pyc` files is going to have a huge impact, since it takes Python about a millisecond to load each `.py`. I created a fastpython branch in 214e3a68a9358b2ee7dc0cb27a63c06256979317...

> due to how _frozen_importlib works Could you help me understand what that is? I've noticed a few C sources that seem to have Python binary byte code embedded in...

So I got the freeze program working in d522a88d. I wish I had a dollar for every time I've seen Python crash with "Unable to get the locale encoding". I...

See cabb0a7e. It's now officially a working 1.1mb pycomp.com binary which turns .py files into .pyc files. I found an objdump tool for pyc files that let me confirm that...

@Keithcat1 The issues you encountered should be addressed by recent commits. I've made numerous other fixes and improvements too! For example, we now have really excellent completion. Here's a screencast...

@ahgamut I want to credit you somehow when we move forward with publicizing this contribution. One suggestion I have is the following language. Does it meet your approval? ``` Python...

Yes pure Python packages will be supported, and they can be inside or outside the zip. Eventually native ones like Numpy will be supported too. @ahgamut did we remove that...

I'm glad you enjoyed the readline interface. Definite no on stackless. We have better ways of simulating threads. Can't Flask do its thing using fork multiprocessing, just like gunicorn used...

There's nothing stopping us from checking-in the code for commonly used native extensions, such as greenlet, and shipping it as part of python.com.

By the way, one question I forgot to answer earlier is that, it is possible to modify the zip store while the APE binary is running, but you need to...