From a448041be0d793a503199b17e150687a41c501bc Mon Sep 17 00:00:00 2001 From: Simon de Vlieger Date: Jun 15 2022 12:01:56 +0000 Subject: Mention a package with an underscore in the importable name for Python. One more example to cover the case for packages with underscored importable names. --- diff --git a/guidelines/modules/ROOT/pages/Python.adoc b/guidelines/modules/ROOT/pages/Python.adoc index caa674e..8a61626 100644 --- a/guidelines/modules/ROOT/pages/Python.adoc +++ b/guidelines/modules/ROOT/pages/Python.adoc @@ -226,6 +226,7 @@ Some examples (both good and worse): |`+PyYAML+` |`+python3-pyyaml+` |`+pyyaml+` |`+yaml+` |`+python-ldap+` |`+python3-ldap+` |`+python-ldap+` |`+ldap+`, `+ldif+`, etc. |`+python-pillow+` |`+python3-pillow+` |`+pillow+` |`+PIL+` +|`+python-jupyter-client+` |`+python3-jupyter-client+` |`+jupyter-client+` |`+jupyter_client+` |=== Elsewhere in this text,