| Commit message (Collapse) | Author | Age |
|
|
|
|
| |
Caveat is that __new__ should recurse to base class __new__, and ultimately,
object.__new__ is what handles instance allocation.
|
| |
|
|
|
|
|
| |
Also, define object.__init__() (semantically empty, purely CPython compat
measure). Addresses #520.
|
|
|
|
|
|
|
| |
Blanket wide to all .c and .h files. Some files originating from ST are
difficult to deal with (license wise) so it was left out of those.
Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/.
|
|
|
|
| |
Specifically, nlr.h does.
|
|
|
|
|
| |
This makes isinstance(X, object) and issubclass(X, object) true for all
X.
|
|
|
|
|
|
| |
This does not affect code size or performance when debugging turned off.
To address issue #420.
|
|
|