LLMs1 min read
Python 3.15 Soft-Deprecates re.match()
Python 3.15 introduces soft deprecation for the re.match() function, offering re.prefixmatch() as a clearer alternative. Engineers should consider re.search() or re.fullmatch() for most use cases.
From Simon Willison