We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cb8a6 commit 0353e88Copy full SHA for 0353e88
graalpython/lib-graalpython/str.py
@@ -316,13 +316,13 @@ def formatter_parser(self):
316
return iter(self.parser_list)
317
318
319
-def strformat(self, *args, **kwargs):
320
- template = TemplateFormatter(self)
+def strformat(___self, *args, **kwargs):
+ template = TemplateFormatter(___self)
321
return template.build(args, kwargs)
322
323
324
-def format_map(self, mapping):
325
+def format_map(___self, mapping):
326
return template.build(None, mapping)
327
328
0 commit comments