##// END OF EJS Templates
interfaces: make the `peer` mixin not a Protocol to fix Python 3.10 failures...
Matt Harbison -
r53403:199b0e62 default
parent child Browse files
Show More
@@ -449,7 +449,8 class ipeerrequests(Protocol):
449 """
449 """
450
450
451
451
452 class peer(_ipeerconnection, ipeercapabilities, ipeerrequests, Protocol):
452 # TODO: make this a Protocol class when 3.11 is the minimum supported version?
453 class peer(_ipeerconnection, ipeercapabilities, ipeerrequests):
453 """Unified interface for peer repositories.
454 """Unified interface for peer repositories.
454
455
455 All peer instances must conform to this interface.
456 All peer instances must conform to this interface.
General Comments 0
You need to be logged in to leave comments. Login now