From 4d15c8e590309a0c009ca6a2c8b763e9ef0e526b Mon Sep 17 00:00:00 2001 From: Dmitri Bogomolov <4glitch@gmail.com> Date: Sun, 13 Oct 2019 13:10:06 +0300 Subject: [PATCH] Fix fallback package docstring --- src/fallback/__init__.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/fallback/__init__.py b/src/fallback/__init__.py index d45c754d..9a8d646f 100644 --- a/src/fallback/__init__.py +++ b/src/fallback/__init__.py @@ -1,13 +1,19 @@ """ -.. todo:: hello world +Fallback expressions help PyBitmessage modules to run without some external +dependencies. + + +RIPEMD160Hash +------------- + +We need to check :mod:`hashlib` for RIPEMD-160, as it won't be available +if OpenSSL is not linked against or the linked OpenSSL has RIPEMD disabled. +Try to use `pycryptodome `_ +in that case. """ import hashlib -# We need to check hashlib for RIPEMD-160, as it won't be available -# if OpenSSL is not linked against or the linked OpenSSL has RIPEMD -# disabled. - try: hashlib.new('ripemd160') except ValueError: