Re: why is it so quiet in here?
"Mark Hahn" <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.user |
|---|---|
| Message-ID | <[email protected]> |
Lenard Lindstrom wrote: > Are you talking about a built-in version of Python's ctypes module? > There was a discussion on the Pyrex mailing list about what was > better, ctypes or Pyrex. The general concensus, though not proven, > was that ctypes would be slower. But what about adding new types to > Prothon, like numarray. I doubt a JIT could optimize something like > that? Or would one have to write it as a pure C library, then wrap it > for Prothon? I don't know. Is ctypes like my dll wrapper proposal? http://prothon.org/wiki?pagename=PyrexInProthon My proposal is only good for wrapping existing c libraries, not for writing new C extensions. I thought psyco made writing new C extensions for Python unecessary.