How to Install and Uninstall python3-zc.customdoctests Package on openSUSE Leap

Last updated: May 06,2024

1. Install "python3-zc.customdoctests" package

This tutorial shows how to install python3-zc.customdoctests on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-zc.customdoctests

2. Uninstall "python3-zc.customdoctests" package

In this section, we are going to explain the necessary steps to uninstall python3-zc.customdoctests on openSUSE Leap:

$ sudo zypper remove python3-zc.customdoctests

3. Information about the python3-zc.customdoctests package on openSUSE Leap

Information for package python3-zc.customdoctests:
--------------------------------------------------
Repository : Main Repository
Name : python3-zc.customdoctests
Version : 1.0.1-bp155.2.10
Arch : noarch
Vendor : openSUSE
Installed Size : 34.1 KiB
Installed : No
Status : not installed
Source package : python-zc.customdoctests-1.0.1-bp155.2.10.src
Upstream URL : http://pypi.python.org/pypi/zc.customdoctests
Summary : zc.customdoctests -- Use doctest with other languages
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.