aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-01-24 06:53:08 -0500
committerJack Lloyd <[email protected]>2017-01-24 06:53:08 -0500
commitb49eaee216142ad6eab5ad437aea44b7897baf84 (patch)
treeb21bf52fdbd57698b4b8278f08cd96499c26a2b2 /doc
parent0040b939829abdfdc085ea64fba8eb8b4d8c48f0 (diff)
Complete the rename of Python wrapper
Where referenced in CI scripts, docs and such
Diffstat (limited to 'doc')
-rw-r--r--doc/contributing.rst4
-rw-r--r--doc/downloads.rst0
-rw-r--r--doc/manual/building.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst
index 5aaf3d61c..092fe2fcd 100644
--- a/doc/contributing.rst
+++ b/doc/contributing.rst
@@ -11,7 +11,7 @@ Under ``src`` there are directories
example ``build-data/cc/gcc.txt`` describes various gcc options.
* ``scripts`` contains misc scripts: install, distribution, various
codegen things. Scripts controlling CI go under ``scripts/ci``.
-* ``python/botan.py`` is the Python ctypes wrapper
+* ``python/botan2.py`` is the Python ctypes wrapper
Library Layout
========================================
@@ -103,7 +103,7 @@ PyPy, etc is great when viable (in the sense of not causing problems for 2.7 or
program succesfully is required for a working build making it as portable as
possible is considered key.
-The python wrapper botan.py targets CPython 2.7, 3.x, and latest PyPy. Note that
+The python wrapper botan2.py targets CPython 2.7, 3.x, and latest PyPy. Note that
a single file is used to avoid dealing with any of Python's various crazy module
distribution issues.
diff --git a/doc/downloads.rst b/doc/downloads.rst
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/doc/downloads.rst
diff --git a/doc/manual/building.rst b/doc/manual/building.rst
index 5e09d1569..9c0dc0ab1 100644
--- a/doc/manual/building.rst
+++ b/doc/manual/building.rst
@@ -409,7 +409,7 @@ Building the Python wrappers
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The Python wrappers for Botan use ctypes and the C89 API so no special
-build step is required, just import botan.py
+build step is required, just import botan2.py
See :doc:`Python Bindings <python>` for more information about the
Python bindings.