@@ -270,8 +270,7 @@ For an example of how the scrap module works refer to the examples page
270270 | :sg:`put_text(text) -> None`
271271
272272 Places the input text into the clipboard. The data should be a string.
273- This is a different clipboard than the rest of the scrap module, except
274- for ``get_text `` and ``has_text ``.
273+ This is the same clipboard as the legacy scrap API when using ``SCRAP_TEXT ``.
275274
276275 :param string text: String to be placed into the clipboard
277276 :rtype: None
@@ -290,8 +289,8 @@ For an example of how the scrap module works refer to the examples page
290289 | :sg:`get_text() -> str`
291290
292291 Gets text from the clipboard and returns it. If the clipboard is empty,
293- returns an empty string. This is a different clipboard than the rest of
294- the scrap module, except for `` put_text `` and `` has_text ``.
292+ returns an empty string. This is the same clipboard as the legacy scrap
293+ API when using `` SCRAP_TEXT ``.
295294
296295 :rtype: str
297296
@@ -305,8 +304,7 @@ For an example of how the scrap module works refer to the examples page
305304 | :sg:`has_text() -> bool`
306305
307306 Returns ``True `` if the clipboard has a string, otherwise returns ``False ``.
308- This is a different clipboard than the rest of the scrap module, except
309- for ``get_text `` and ``put_text ``.
307+ This is the same clipboard as the legacy scrap API when using ``SCRAP_TEXT ``.
310308
311309 :rtype: bool
312310
0 commit comments