-
-
Notifications
You must be signed in to change notification settings - Fork 34.4k
Optimize textwrap.indent() #107369
Copy link
Copy link
Closed
Labels
performancePerformance or resource usagePerformance or resource usagestdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directory
Metadata
Metadata
Assignees
Labels
performancePerformance or resource usagePerformance or resource usagestdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directory
Current code:
predicate = str.stripis faster thandef predicate(line)''.join(x)converts input iterable to sequence. Using generator just makes overhead.prefix + lineis avoidable.Linked PRs
textwrap.indent()#131923