How to Install and Uninstall python36-zc.customdoctests Package on openSuSE Tumbleweed

Last updated: November 26,2024

1. Install "python36-zc.customdoctests" package

This is a short guide on how to install python36-zc.customdoctests on openSuSE Tumbleweed

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

2. Uninstall "python36-zc.customdoctests" package

In this section, we are going to explain the necessary steps to uninstall python36-zc.customdoctests on openSuSE Tumbleweed:

$ sudo zypper remove python36-zc.customdoctests

3. Information about the python36-zc.customdoctests package on openSuSE Tumbleweed

Information for package python36-zc.customdoctests:
---------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python36-zc.customdoctests
Version : 1.0.1-2.1
Arch : noarch
Vendor : openSUSE
Installed Size : 32,6 KiB
Installed : No
Status : not installed
Source package : python-zc.customdoctests-1.0.1-2.1.src
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.