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

Last updated: June 15,2024

1. Install "python310-overrides" package

In this section, we are going to explain the necessary steps to install python310-overrides on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python310-overrides

2. Uninstall "python310-overrides" package

Learn how to uninstall python310-overrides on openSuSE Tumbleweed:

$ sudo zypper remove python310-overrides

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

Information for package python310-overrides:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python310-overrides
Version : 7.7.0-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 110.3 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.