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

Last updated: January 01,2025

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

Please follow the guidelines below to install python3-zc-customdoctests.noarch on Fedora 36

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

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

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

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

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

Last metadata expiration check: 4:27:14 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : python3-zc-customdoctests
Version : 1.0.1
Release : 29.fc36
Architecture : noarch
Size : 20 k
Source : python-zc-customdoctests-1.0.1-29.fc36.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.