How to Install and Uninstall python39-overrides Package on openSuSE Tumbleweed

Last updated: June 16,2024

1. Install "python39-overrides" package

This guide covers the steps necessary to install python39-overrides on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-overrides

2. Uninstall "python39-overrides" package

This guide covers the steps necessary to uninstall python39-overrides on openSuSE Tumbleweed:

$ sudo zypper remove python39-overrides

3. Information about the python39-overrides package on openSuSE Tumbleweed

Information for package python39-overrides:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-overrides
Version : 7.7.0-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 110.4 KiB
Installed : No
Status : not installed
Source package : python-overrides-7.7.0-1.4.src
Upstream URL : https://github.com/mkorpela/overrides
Summary : A decorator to automatically detect mismatch when overriding a method
Description :
A decorator @override that verifies that a method that should override
an inherited method actually does it.
Copies the docstring of the inherited method to the overridden method.
Since signature validation and docstring inheritance are performed on
class creation and not on class instantiation, this library significantly
improves the safety and experience of creating class hierarchies in Python
without significantly impacting performance.
See https://stackoverflow.com/q/1167617 for the initial inspiration for
this library.