From: Robert Bradshaw Date: Thu, 12 Nov 2009 08:26:04 +0000 (-0800) Subject: Add stubs for pure and directives. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=566d99a272d5604c731719e53bf2a774451e19ae;p=cython.git Add stubs for pure and directives. --- diff --git a/src/reference/directives.rst b/src/reference/directives.rst new file mode 100644 index 00000000..33ad093a --- /dev/null +++ b/src/reference/directives.rst @@ -0,0 +1,4 @@ +Compiler Directives +=================== + +TODO. See http://wiki.cython.org/enhancements/compilerdirectives \ No newline at end of file diff --git a/src/reference/index.rst b/src/reference/index.rst index 628e7ee7..2cd290ae 100644 --- a/src/reference/index.rst +++ b/src/reference/index.rst @@ -16,6 +16,7 @@ Contents: interfacing_with_other_code special_mention limitations + directives Indices and tables ------------------ diff --git a/src/tutorial/index.rst b/src/tutorial/index.rst index a5160115..d7972a60 100644 --- a/src/tutorial/index.rst +++ b/src/tutorial/index.rst @@ -1,8 +1,6 @@ Tutorials ========= -Contents: - .. toctree:: :maxdepth: 2 @@ -14,6 +12,7 @@ Contents: profiling_tutorial numpy strings + pure readings related_work appendix diff --git a/src/tutorial/pure.rst b/src/tutorial/pure.rst new file mode 100644 index 00000000..f07e4de4 --- /dev/null +++ b/src/tutorial/pure.rst @@ -0,0 +1,4 @@ +Pure Python Mode +================ + +TODO: http://wiki.cython.org/pure \ No newline at end of file