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

Last updated: May 23,2024

1. Install "python2-zc.customdoctests" package

This is a short guide on how to install python2-zc.customdoctests on openSUSE Leap

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

2. Uninstall "python2-zc.customdoctests" package

Please follow the step by step instructions below to uninstall python2-zc.customdoctests on openSUSE Leap:

$ sudo zypper remove python2-zc.customdoctests

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

Information for package python2-zc.customdoctests:
--------------------------------------------------
Repository : Main Repository
Name : python2-zc.customdoctests
Version : 1.0.1-bp153.1.20
Arch : noarch
Vendor : openSUSE
Installed Size : 30,8 KiB
Installed : No
Status : not installed
Source package : python-zc.customdoctests-1.0.1-bp153.1.20.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.