inline

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • km

    inline

    Hi all,

    Does python support inline assembly ? (like C ) how can one do that in Python ? any link to third party module ?

    kindly enlighten
    thanks,
    KM



  • Rene Pijlman

    #2
    Re: inline

    km:[color=blue]
    >Does python support inline assembly ? (like C )[/color]

    Thusly: http://www.python.org/doc/current/ext/ext.html

    --
    René Pijlman

    Comment

    • djw

      #3
      Re: inline

      km wrote:
      [color=blue]
      > Hi all,
      >
      > Does python support inline assembly ? (like C ) how can one do that in
      > Python ? any link to third party module ?
      >
      > kindly enlighten
      > thanks,
      > KM[/color]

      Not assembly, but you can embed C into Python with Weave
      [http://www.scipy.org/site_content/weave] (part of SciPy).

      -Don


      Comment

      Working...