Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/extending/index.rst

    r2 r391  
    55##################################################
    66
    7 :Release: |version|
    8 :Date: |today|
    9 
    107This document describes how to write modules in C or C++ to extend the Python
    11 interpreter with new modules.  Those modules can define new functions but also
    12 new object types and their methods.  The document also describes how to embed
    13 the Python interpreter in another application, for use as an extension language.
    14 Finally, it shows how to compile and link extension modules so that they can be
    15 loaded dynamically (at run time) into the interpreter, if the underlying
    16 operating system supports this feature.
     8interpreter with new modules.  Those modules can not only define new functions
     9but also new object types and their methods.  The document also describes how
     10to embed the Python interpreter in another application, for use as an extension
     11language.  Finally, it shows how to compile and link extension modules so that
     12they can be loaded dynamically (at run time) into the interpreter, if the
     13underlying operating system supports this feature.
    1714
    1815This document assumes basic knowledge about Python.  For an informal
Note: See TracChangeset for help on using the changeset viewer.