BEOPEN.COM TERMS AND CONDITIONS FOR PYTHON 2.0
Python 1.6 is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement together with Python 1.6 may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1012. This Agreement may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1012.
Copyright © 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved.
Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Agradecimientos
Las siguientes personas han contribuido secciones a este documento: Jim Fulton, Konrad Hinsen, Chris Phoenix y Neil Schemenauer.
Python es un lenguaje de programación interpretado y orientado a objetos. Este documento describe cómo escribir módulos en C o C++ para extender el intérprete de Python con nuevos módulos. Estos módulos pueden definir nuevas funciones y también nuevos tipos de objetos con sus métodos. También se describe cómo empotrar el intérprete de python en otra aplicación, para usarlo como lenguaje de extensión (como los lenguajes de macro). Al final, explica cómo compilar y enlazar los módulos de extensión para que se carguen dinámicamente (en tiempo de ejecución) en el intérprete, siempre que el sistema operativo tenga esta posibilidad.
Este documento supone un conocimiento básico de Python. Hay una introducción informal al lenguaje en la Guía de aprendizaje de Python. El Manual de referencia de Python proporciona una definición más formal del lenguaje. La Referencia de la biblioteca de Python documenta los tipos de objetos existentes, funciones y módulos (tanto internos como escritos en Python) que dan al lenguaje su amplio rango de aplicación.
Si se desea una descripción detallada del API de Python/C, se debe consultar el Manual de referencia del API Python/C.