Skip to content

Commit c7f615b

Browse files
DOC: update shortened link to full (#46899) (#46907)
Co-authored-by: charles <[email protected]>
1 parent b4ed8cf commit c7f615b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/strings/object_array.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -434,9 +434,9 @@ def _str_rstrip(self, to_strip=None):
434434
return self._str_map(lambda x: x.rstrip(to_strip))
435435

436436
def _str_removeprefix(self, prefix: str) -> Series:
437-
# outstanding question on whether to use native methods for users
438-
# on Python 3.9+ https://bit.ly/3LuMeRn, in which case we could do
439-
# return self._str_map(str.removeprefix)
437+
# outstanding question on whether to use native methods for users on Python 3.9+
438+
# https://github.com/pandas-dev/pandas/pull/39226#issuecomment-836719770,
439+
# in which case we could do return self._str_map(str.removeprefix)
440440

441441
def removeprefix(text: str) -> str:
442442
if text.startswith(prefix):

0 commit comments

Comments
 (0)