156135250194107072078175030179198180024228156016206217188240240204173114040172184173252167
We mentioned earlier how powerful it is to have the ability to reuse code and extend the language. In pure Python, these extensions are modules, but you can also develop lower-level code in C, C++, or Java, and interface those with Python in a seamless fashion. Writing your extensions in a lower-level programming language gives you added performance and some security (because the source code does not have to be revealed). This final chapter of the book walks you step-by-step through the extension building process.
| Last updated on 9/14/2001 Core Python Programming, © 2002 Prentice Hall PTR |
|