couple of fixes
authorPeter Alexander <vel.accel@gmail.com>
Thu, 1 Oct 2009 10:01:33 +0000 (06:01 -0400)
committerPeter Alexander <vel.accel@gmail.com>
Thu, 1 Oct 2009 10:01:33 +0000 (06:01 -0400)
src/compilation.rst
src/extension_types.rst
src/interfacing_with_other_code.rst
src/language_basics.rst
src/limitations.rst
src/overview.rst
src/special_mention.rst

index 0471dac25e98505a002a0d75ddd611cf0106885f..3c85fa8c3d8f224114535bee735a0259d5d9c61b 100644 (file)
@@ -11,7 +11,6 @@ Compilation
 There are several ways to compile cython code.
 
 .. contents::
-    :depth: 2
     :local:
 
 
index 86626994c50ae6b3fd6df44ba9e3f18bd66d9bdc..0e50beb0a0b29630e461a2d4b7c54de297884e23 100644 (file)
@@ -7,7 +7,6 @@ Extention Types
 ***************
 
 .. contents::
-    :depth: 2
     :local:
 
 ==========
index 0cc7f230eda08afd52bf81d1bab630e0e69707a1..b3176df9256086c616710369d8c478e49c39a3a8 100644 (file)
@@ -7,7 +7,6 @@ Interfacing with Other Code
 ***************************
 
 .. contents::
-    :depth: 2
     :local:
 
 ==
index cffae0f92c8ad8a6db7aefe1e37691892d85ed08..57b4e2be167f835f6a753fe571e1b9a63aea68eb 100644 (file)
@@ -17,35 +17,37 @@ Cython File Types
 =================
 
 There are three file types in cython:
-* Definition files carry the `.pxd` suffix
-* Implementation files carry the `'.pyx suffix
-* Include files which carry the `.pxi` suffix
 
+* Definition files carry a `.pxd` suffix
+* Implementation files carry a `.pyx` suffix
+* Include files which carry a `.pxi` suffix
 
+.. contents::
+    :local:
 
-Definition
-==========
+Definition File
+===============
 
 What can it contain?
 --------------------
 
- * Any kind of C type declaration.
- * `extern` C function or variable decarations.
- * Module implementation declarations as well as definition parts of extension types.
- * This also is a convenient place to put all declarations of functions, etc., for an
-   **external library**
+* Any kind of C type declaration.
+* `extern` C function or variable decarations.
+* Declarations for module implementations.
+* The definition parts of **extension types**.
+* All declarations of functions, etc., for an **external library**
 
 What can't it contain?
 ----------------------
 
- * Any non-extern C variable declaration.
- * Implementations of C or Python functions.
- * Python class definitions
- * Python executable statements.
- * Any declaration that is defined as **public** to make it accessible to other Cython modules.
+* Any non-extern C variable declaration.
+* Implementations of C or Python functions.
+* Python class definitions
+* Python executable statements.
+* Any declaration that is defined as **public** to make it accessible to other Cython modules.
 
 * This is not necessary, as it is automatic.
 * a **public** declaration is only needed to make it accessible to **external C code**.
+ * This is not necessary, as it is automatic.
+ * a **public** declaration is only needed to make it accessible to **external C code**.
 
 What else?
 ----------
@@ -68,8 +70,8 @@ compilation order
 
 
 
-Implementation
-===============
+Implementation File
+===================
 
 What can it contain?
 --------------------
@@ -83,8 +85,8 @@ What can't it contain?
   already defined else where... **more on this later**
 
 
-Include
-=======
+Include File
+============
 
 What can it contain?
 --------------------
@@ -105,6 +107,9 @@ How do I use it?
 Data Typing
 ===========
 
+.. contents::
+    :local:
+
 Grouping
 ========
 
@@ -129,6 +134,9 @@ Statements and Expressions
 Functions
 =========
 
+.. contents::
+    :local:
+
 Callable from Python
 =====================
 
index 84bd0e03c63cc9646d2cba202841e9aefd4ad536..b1aded75f7f95bdc82e7ea067312e6dd30fa6109 100644 (file)
@@ -7,5 +7,4 @@ Limitations
 ***********
 
 .. contents::
-    :depth: 2
     :local:
index 82e14a1e8c26b0a26d60718ff2a1b74afcd13cf4..5478722015d9bd49784feb3d84b1bb7ea180c1a2 100644 (file)
@@ -7,7 +7,6 @@ Overview
 ********
 
 .. contents::
-    :depth: 2
     :local:
 
 ===============
index 3827e9d6033cdfb10109cdab9d95815eda81acee..eaf28751f32d1e76177a5ead0597f8b2dd96bc68 100644 (file)
@@ -8,5 +8,4 @@ Special Mention
 ***************
 
 .. contents::
-    :depth: 2
     :local: