Skip to main content

A simple python 2 decorator that provide .__super member to python2 classes as private static member in order to not have to specify the current class name.

Without super nor supertools:

class MyClass(MyParent) :
    def __init__(self) :
        MyParent.__init__(self)

Classical implementation using super (python 2 syntax):

class MyClass(MyParent) :
    def __init__(self) :
        super(MyClass,self).__init__()

Using supertools:

from supertools import superable

@superable
class MyClass(MyParent) :
    def __init__(self) :
        self.__super.__init__()

Syntax is nice, dosn’t repeat neither classname nor parent classname, and doesn’t parse callstack at runtime like other similar modules does.

Note that this syntax is however not compatible with python 3 syntax, which would be in this case:

class MyClass(MyParent) :
    def __init__(self) :
        super().__init__()

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

supertools-1.0.1.tar.gz (2.4 kB view details)

Uploaded Source

File details

Details for the file supertools-1.0.1.tar.gz.

File metadata

  • Download URL: supertools-1.0.1.tar.gz
  • Upload date:
  • Size: 2.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for supertools-1.0.1.tar.gz
Algorithm Hash digest
SHA256 5b0f43af417d719171254a1502ecc7d771e5dd677b681027f8bde4d2d5a10f65
MD5 bec89964765c82231d1466b6e2aae687
BLAKE2b-256 22262fd344b83d12bc6be37c336a6dd00754254c3fa10d8f3d330089f488a83f

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.1 This release

1 file

1.0.0

1 file

0.1.1

1 file

0.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page