TextBuffer: add note about LMC compat

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2020-04-05 02:26:02 +02:00
parent bcd96cc8a4
commit 747deb41e6
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -121,7 +121,7 @@ class TextBuffer:
self._messages_nb_limit = messages_nb_limit # type: int self._messages_nb_limit = messages_nb_limit # type: int
# Message objects # Message objects
self.messages = [] # type: List[Message] self.messages = [] # type: List[Message]
# Correction id -> Original message id # COMPAT: Correction id -> Original message id.
self.correction_ids = {} # type: Dict[str, str] self.correction_ids = {} # type: Dict[str, str]
# we keep track of one or more windows # we keep track of one or more windows
# so we can pass the new messages to them, as they are added, so # so we can pass the new messages to them, as they are added, so