Skip to main content

Simpler way to call super methods without all the repetition

Project description

SimpleSuper Build Status

License: ISC - See LICENSE.txt file

This is a simple piece of code born out of our frustration with the repetitiveness of calling overridden methods in python. having to write

super(TheCurrentClassThatImIn, self).the_method_that_im_currently_in(all, the, arguments, again)

every time you want to do that is just not DRY and makes refactoring that much more tedious.

Wouldn't it be much cooler if you could just write self.super() instead? Yeah, we thought so, too.

In the class where you want to use this (or any superclass), you need to make the SuperProxy available like this:

class SuperClass(object):
    super = SuperProxy()

Afterwards you can just use it in three forms in any method:

  • Auto-pick-up all available arguments and call the super method of the current method

    self.super()

  • Call super method of current method but with explicit arguments

    self.super(some_arguments)

  • Get a proxy for the superclass and call a specific method with specific arguments

    self.super.whatever_method(whatever, arguments)

    (self.super is the same as super(CurrentClass, self) but more DRY)

Known Bugs:

  • Works only for object subclasses (new style classes)
  • Doesn't find super-methods of decorated methods as the code of the current method can't be found in the class object under the name of the method.

TODO:

  • Find a way so you can do something like from simple_super import use_in_object to get every object enhanced by its niceness.

Changelog:

1.0.10 (2023-01-10)

  • Drop support for python 3 versions below 3.6 that are not supported by the python team anymore.
  • Add support for all modern python versions up to 3.11

1.0.5 and 1.0.6, 1.0.7, 1.0.8, 1.0.9 (2016-09-07)

  • package for pypi to have an easy dependency
  • small cleanups to make it easier to step over this code in the debugger

1.0.4 (2010-06-06)

  • Add heuristic to move arguments to kwargs if lower method has more named arguments than the upper method

1.0.3 (2010-05-31)

  • Added compatibility for Python 3
  • Moved stand-alone functions into nice classes

1.0.2 (2010-03-27)

  • Simplistic heuristic detection if self.super() or self.super(*args, **kwargs) was called so we can pass the right parameters
  • Made simple_super compatible with Python 2.3 and old-style classes

1.0.1

  • do not add arguments if subclass uses self.super() and super class does not get any arguments besides self.

1.0

  • initial release

Project details


Download files

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

Source Distribution

simplesuper-1.0.10.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

simplesuper-1.0.10-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file simplesuper-1.0.10.tar.gz.

File metadata

  • Download URL: simplesuper-1.0.10.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for simplesuper-1.0.10.tar.gz
Algorithm Hash digest
SHA256 07923e8a0d0d4428cffed6ce4fd855a15134d3ed02a018915cff57aa4b1879b1
MD5 851238043d3efbf12b629495cc358bc8
BLAKE2b-256 65ffca44da7ce5662d94af8c2bbc5ba84a15f85eadff9dbe319af31e1ca52bf1

See more details on using hashes here.

File details

Details for the file simplesuper-1.0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for simplesuper-1.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 5e3d723ba07d627e9446d028eb950fa08d29a178705780286f79b5fa280ede11
MD5 cf6601406224acd353bb1dc77e04036c
BLAKE2b-256 5bc5785f7b6e4bff1f32a8f2479b3ed3a3b1d72408bc6645908ebd63af7e9cc5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page