From e0f377236580dc8cfc90f8f0eea861b440548315 Mon Sep 17 00:00:00 2001 From: charles Date: Sat, 30 Apr 2022 18:10:10 +0200 Subject: [PATCH] DOC: update shortened link to full (#46899) --- pandas/core/strings/object_array.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandas/core/strings/object_array.py b/pandas/core/strings/object_array.py index 2f65ce17f93b2..7421645baa463 100644 --- a/pandas/core/strings/object_array.py +++ b/pandas/core/strings/object_array.py @@ -434,9 +434,9 @@ def _str_rstrip(self, to_strip=None): return self._str_map(lambda x: x.rstrip(to_strip)) def _str_removeprefix(self, prefix: str) -> Series: - # outstanding question on whether to use native methods for users - # on Python 3.9+ https://git.io/JE9QK, in which case we could do - # return self._str_map(str.removeprefix) + # outstanding question on whether to use native methods for users on Python 3.9+ + # https://github.com/pandas-dev/pandas/pull/39226#issuecomment-836719770, + # in which case we could do return self._str_map(str.removeprefix) def removeprefix(text: str) -> str: if text.startswith(prefix):