Hi all, I fixed pypy/bin/checkmodules.py (I actually rewrote it from scratch). It may no longer accept the _clr module, I didn't check, but now it accepts a good number of other built-in modules. For example micronumpy. So I would recommend micronumpy developers to use it before they check in :-) It gives a "translates / does not translate" answer in 30 seconds. A bientôt, Armin.
On Wed, Dec 7, 2011 at 7:13 PM, Armin Rigo <arigo@tunes.org> wrote:
Hi all,
I fixed pypy/bin/checkmodules.py (I actually rewrote it from scratch). It may no longer accept the _clr module, I didn't check, but now it accepts a good number of other built-in modules.
For example micronumpy. So I would recommend micronumpy developers to use it before they check in :-) It gives a "translates / does not translate" answer in 30 seconds.
Does it accept -Ojit? It has been traditionally a big cause of problems with micronumpy. Anyway, jokes aside, thanks :)
A bientôt,
Armin. _______________________________________________ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev
On Wed, Dec 7, 2011 at 8:07 PM, Maciej Fijalkowski <fijall@gmail.com> wrote:
On Wed, Dec 7, 2011 at 7:13 PM, Armin Rigo <arigo@tunes.org> wrote:
Hi all,
I fixed pypy/bin/checkmodules.py (I actually rewrote it from scratch). It may no longer accept the _clr module, I didn't check, but now it accepts a good number of other built-in modules.
For example micronumpy. So I would recommend micronumpy developers to use it before they check in :-) It gives a "translates / does not translate" answer in 30 seconds.
Does it accept -Ojit? It has been traditionally a big cause of problems with micronumpy.
Anyway, jokes aside, thanks :)
A bientôt,
Armin. _______________________________________________ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev
by the way. how about adding checkmodule runs to module tests then?
Hi, On Wed, Dec 7, 2011 at 19:09, Maciej Fijalkowski <fijall@gmail.com> wrote:
Does it accept -Ojit? It has been traditionally a big cause of problems with micronumpy.
Anyway, jokes aside, thanks :)
Jokes aside, it just annotates and rtypes, so I think the -O option makes no difference at all --- but I'm not completely sure about that claim. The config options can be tweaked if needed...
by the way. how about adding checkmodule runs to module tests then?
Good idea. I added a few modules to pypy/objspace/fake/test/test_zmodule, but indeed these tests should be moved to their respective modules. A bientôt, Armin.
On Wed, Dec 7, 2011 at 9:06 PM, Armin Rigo <arigo@tunes.org> wrote:
Hi,
On Wed, Dec 7, 2011 at 19:09, Maciej Fijalkowski <fijall@gmail.com> wrote:
Does it accept -Ojit? It has been traditionally a big cause of problems with micronumpy.
Anyway, jokes aside, thanks :)
Jokes aside, it just annotates and rtypes, so I think the -O option makes no difference at all --- but I'm not completely sure about that claim. The config options can be tweaked if needed...
by the way. how about adding checkmodule runs to module tests then?
Good idea. I added a few modules to pypy/objspace/fake/test/test_zmodule, but indeed these tests should be moved to their respective modules.
A bientôt,
Armin.
I moved the numpy one there. Also enabled list comprehension.
participants (2)
-
Armin Rigo
-
Maciej Fijalkowski