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']
```
======
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
Release history Release notifications | RSS feed
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 details)
File details
Details for the file init_subclass-0.0.1.tar.gz
.
File metadata
- Download URL: init_subclass-0.0.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e64d7b39e22c8c357754c6594067be0a3bf08c8f5161d0a99f73cafad9b3a461 |
|
MD5 | bfcaba4e00274fa04b8b27ffb3b31fdf |
|
BLAKE2b-256 | ed03a4c0f6ea13e0571ae883ab5f03fec30c95db4d3aab250deb4825af4aab99 |