Skip to main content

backwards compatibility for __init_subclass__

Project description

init_subclass
======
Backwards compatibility for Python 3
[\_\_init_subclass\_\_](https://docs.python.org/3/reference/datamodel.html#object.__init_subclass__)


### Install
```pip install init_subclass```


### Usage
```
class Philosopher(InitSubclass):
subclasses = []

def __init_subclass__(cls):
Philosopher.subclasses.append(cls.__name__)


class Socrates(Philosopher):
pass
class Plato(Philosopher):
pass


print Philosopher.subclasses
=> ['Socrates', 'Plato']
```

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

init_subclass-0.0.1.tar.gz (2.6 kB view hashes)

Uploaded Source

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