Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-05-08 18:42:06 +03:00
parent aee689646b
commit 0cd061e3e4

View File

@ -604,9 +604,13 @@ RawInstance(<context>, <constructor>, ..)
- use `{}`.
- Link the object into the prototype chain
_Un-initialized_ means this will not call `.__init__(..)`
This can be called with and without `new`.
### `Constructor(..)` / `C(..)`
Define an object constructor
@ -640,6 +644,8 @@ done for two reasons:
empty inheritance.
This can be called with and without `new`.
Shorthand to `Constructor(..)`
```