[issue44496] string.Formatter class not allowing {.field}

2021-11-03 Thread Eric V. Smith
Eric V. Smith added the comment: I think this is a dupe of issue 27307. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue44496] string.Formatter class not allowing {.field}

2021-06-23 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44496] string.Formatter class not allowing {.field}

2021-06-23 Thread Eric V. Smith
Change by Eric V. Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44496] string.Formatter class not allowing {.field}

2021-06-23 Thread Aschwin
New submission from Aschwin : I expected the custom Formatter to behave the same as the normal "".format() function, but unnamed args or not supported. Below is an example, which fails at a KeyError. from string import Formatter class test(): def __init__(self): self.msg = "OK"