The startup text of Python 3.11.1 in a command-line interface produces the text like this (well, at least for me):
Python 3.11.1 (tags/v3.11.1:a7a450f, Dec 6 2022, 19:58:39) [MSC v.1934 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Have you spotted the issue? Well, then you're not as pedantic as you think.
HINT: There a 2 spaces (instead of just 1) lurking in that text. There's a too big of a gap between Dec and 6, see? The date is not formatted properly, so the __DATE__ macro of C has a formatting issue.
Does anyone care to fix this?
And while you're at it, there's also a missing Oxford comma in Type "help", "copyright", "credits" or "license" for more information., so the text should be Type "help", "copyright", "credits", or "license" for more information..
The startup text of Python 3.11.1 in a command-line interface produces the text like this (well, at least for me):
Have you spotted the issue? Well, then you're not as pedantic as you think.
HINT: There a 2 spaces (instead of just 1) lurking in that text. There's a too big of a gap between
Decand6, see? The date is not formatted properly, so the__DATE__macro of C has a formatting issue.Does anyone care to fix this?
And while you're at it, there's also a missing Oxford comma in
Type "help", "copyright", "credits" or "license" for more information., so the text should beType "help", "copyright", "credits", or "license" for more information..