v10.3.1
ronaldoussoren
released this
11 Jun 07:38
·
175 commits
to master
since this release
-
#610: Ensure
__init__
can be used when user implements__new__
.Version 10.3 dropped support for calling
__init__
, but that breaks
a number of popular projects. Reintroduce the ability to use__init__
when a class or one of its super classes contains a user implemenentation
of__new__
.Code relying on the
__new__
provided by PyObjC still cannot use
__init__
for the reason explained in the 10.3 release notes.