Remove all non essential references to the old Zope interfaces (#8988)

As a follow-up to #8971, this PR removes all references to the old Zope interfaces, except the ones used to deprecate them and prepare for their removal.

In the process, some documentation and tests about the `Display` objects are simply removed since they are not relevant anymore given that they are removed from the public API.

* Cleanup some interfaces.IInstaller

* Cleanup IConfig doc

* Allmost complete removal

* Remove useless tests

* Fixes

* More cleanup

* More cleanup

* More cleanup

* Remove a non existent reference

* Better type

* Fix lint
This commit is contained in:
Adrien Ferrand
2021-08-17 14:51:26 -07:00
committed by GitHub
parent acf48df979
commit 143ea15253
32 changed files with 206 additions and 218 deletions
@@ -12,7 +12,7 @@ class Authenticator(common.Plugin, interfaces.Authenticator):
description = "Example Authenticator plugin"
# Implement all methods from IAuthenticator, remembering to add
# Implement all methods from Authenticator, remembering to add
# "self" as first argument, e.g. def prepare(self)...
@@ -21,5 +21,5 @@ class Installer(common.Plugin, interfaces.Installer):
description = "Example Installer plugin"
# Implement all methods from IInstaller, remembering to add
# Implement all methods from Installer, remembering to add
# "self" as first argument, e.g. def get_all_names(self)...