PyPy doesn't implement the most important module!

ryan@DevPC-LX:~$ ipython Python 2.7.6 (default, Mar 22 2014, 22:59:56) Type "copyright", "credits" or "license" for more information. IPython 1.1.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: import __hello__ Hello world... In [2]: Do you really want to exit ([y]/n)? y ryan@DevPC-LX:~$ pypy-ipython Python 2.7.8 (1a994c305af0, Nov 15 2014, 00:43:41) Type "copyright", "credits" or "license" for more information. IPython 4.0.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: import __hello__ --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-1-e4fe6d53f662> in <module>() ----> 1 import __hello__ ImportError: No module named __hello__ In [2]: Do you really want to exit ([y]/n)? y ryan@DevPC-LX:~$ -- Ryan [ERROR]: Your autotools build scripts are 200 lines longer than your program. Something’s wrong. http://kirbyfan64.github.io/

On 22 October 2015 at 19:14, Maciej Fijalkowski <fijall@gmail.com> wrote:
It comes with cpython, as part of the 'frozen' module system. https://docs.python.org/2/library/imp.html#imp.PY_FROZEN -- William Leslie Notice: Likely much of this email is, by the nature of copyright, covered under copyright law. You absolutely MAY reproduce any part of it in accordance with the copyright law of the nation you are reading this in. Any attempt to DENY YOU THOSE RIGHTS would be illegal without prior contractual agreement.

Hi, On Thu, Oct 22, 2015 at 10:48 AM, William ML Leslie <william.leslie.ttg@gmail.com> wrote:
It comes with cpython, as part of the 'frozen' module system.
We can add a file ``lib_pypy/__hello__.py`` containing ``print 'Hello world...'``. That seems highly pointless, though, if we don't support frozen modules anyway. A bientôt, Armin.

On 22 October 2015 at 19:14, Maciej Fijalkowski <fijall@gmail.com> wrote:
It comes with cpython, as part of the 'frozen' module system. https://docs.python.org/2/library/imp.html#imp.PY_FROZEN -- William Leslie Notice: Likely much of this email is, by the nature of copyright, covered under copyright law. You absolutely MAY reproduce any part of it in accordance with the copyright law of the nation you are reading this in. Any attempt to DENY YOU THOSE RIGHTS would be illegal without prior contractual agreement.

Hi, On Thu, Oct 22, 2015 at 10:48 AM, William ML Leslie <william.leslie.ttg@gmail.com> wrote:
It comes with cpython, as part of the 'frozen' module system.
We can add a file ``lib_pypy/__hello__.py`` containing ``print 'Hello world...'``. That seems highly pointless, though, if we don't support frozen modules anyway. A bientôt, Armin.
participants (5)
-
anatoly techtonik
-
Armin Rigo
-
Maciej Fijalkowski
-
Ryan Gonzalez
-
William ML Leslie