aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/docs/gpgme-python-howto.org
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python/docs/gpgme-python-howto.org')
-rw-r--r--lang/python/docs/gpgme-python-howto.org10
1 files changed, 7 insertions, 3 deletions
diff --git a/lang/python/docs/gpgme-python-howto.org b/lang/python/docs/gpgme-python-howto.org
index 0d7f9b4e..0836d21d 100644
--- a/lang/python/docs/gpgme-python-howto.org
+++ b/lang/python/docs/gpgme-python-howto.org
@@ -2025,8 +2025,9 @@ publist = list(pubkeys)
pubnum = len(publist)
print("""
- Number of secret keys: {0}
- Number of public keys: {1}
+ Number of secret keys: {0}
+ Number of public keys: {1}
+
""".format(secnum, pubnum))
#+END_SRC
@@ -2077,7 +2078,10 @@ On the other hand it ran in nearly half the time; taking 6 minutes and
which the CPython script alone took.
The =keycount.pyx= and =setup.py= files used to generate this example
-have been added to the =examples/howto/advanced/cython/= directory.
+have been added to the =examples/howto/advanced/cython/= directory
+The example versions include some additional options to annotate the
+existing code and to detect Cython's use. The latter comes from the
+[[http://docs.cython.org/en/latest/src/tutorial/pure.html#magic-attributes-within-the-pxd][Magic Attributes]] section of the Cython documentation.
* Miscellaneous work-arounds