How to Install and Uninstall python3-zc-customdoctests.noarch Package on Fedora 38

Last updated: November 28,2024

1. Install "python3-zc-customdoctests.noarch" package

Please follow the instructions below to install python3-zc-customdoctests.noarch on Fedora 38

$ sudo dnf update $ sudo dnf install python3-zc-customdoctests.noarch

2. Uninstall "python3-zc-customdoctests.noarch" package

Please follow the instructions below to uninstall python3-zc-customdoctests.noarch on Fedora 38:

$ sudo dnf remove python3-zc-customdoctests.noarch $ sudo dnf autoremove

3. Information about the python3-zc-customdoctests.noarch package on Fedora 38

Last metadata expiration check: 2:19:54 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : python3-zc-customdoctests
Version : 1.0.1
Release : 32.fc38
Architecture : noarch
Size : 26 k
Source : python-zc-customdoctests-1.0.1-32.fc38.src.rpm
Repository : fedora
Summary : Use doctest with other languages
URL : http://pypi.python.org/pypi/zc.customdoctests
License : ZPLv2.1
Description : doctest (and recently manuel) provide hooks for using custom doctest
: parsers. `zc.customdoctests` helps to leverage this to support other
: languages, such as JavaScript::
:
: js> function double (x) { ... return x*2; ... } js> double(2) 4
:
: And with manuel, it facilitates doctests that mix multiple languages,
: such as Python, JavaScript, and sh.