-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge editdistance and wordwrap into strmisc #497
Comments
More importantly, these algorithms have nothing to do with each other except that they work on |
I would agree with you if we weren't talking about the standard library. It's more arbitrary for the standard library to have separate modules for random algorithms like |
One way here is to have |
Abstract
Merge the editdistance and wordwrap modules into the strmisc module.
Motivation
strmisc's description states:
editdistance
andwordwrap
seem to fit this description, and are small enough that they don't need to be in their own module. Having tiny procs like this in their own module clutters the standard library IMO.Description
The way I would do it is: directly add the code of these modules to
strmisc
, then do the following:Doesn't matter if we deprecate these or not.
Code Examples
No response
Backwards Compatibility
No response
The text was updated successfully, but these errors were encountered: