~ubuntu-branches/ubuntu/karmic/pypy/karmic

« back to all changes in this revision

Viewing changes to pypy/bin/compilemodule.py

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Fayolle
  • Date: 2007-04-13 09:33:09 UTC
  • Revision ID: james.westby@ubuntu.com-20070413093309-yoojh4jcoocu2krz
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
"""
 
3
Usage:  compilemodule.py <module-name>
 
4
 
 
5
Compiles the PyPy extension module from  pypy/module/<module-name>/
 
6
into a regular CPython extension module.
 
7
"""
 
8
 
 
9
import autopath, sys
 
10
from pypy.rpython.rctypes.tool.compilemodule import main
 
11
 
 
12
main(sys.argv)