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

Last updated: February 04,2025

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

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

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

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

This is a short guide on how to uninstall python3-zc-customdoctests.noarch on Fedora 35:

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

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

Last metadata expiration check: 1:15:41 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : python3-zc-customdoctests
Version : 1.0.1
Release : 28.fc35
Architecture : noarch
Size : 20 k
Source : python-zc-customdoctests-1.0.1-28.fc35.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.