[issue32735] Typo in f-string example in docs

2018-01-31 Thread Ned Deily
Ned Deily added the comment: New changeset 70e304252af34dfde3d89c9a1aa48c0c4af17dd3 by Ned Deily (Cheryl Sabella) in branch '3.7': bpo-32735: Fix typo in f-strings datetime format specifier example (GH-5464) https://github.com/python/cpython/commit/70e304252af34dfde3d89c9a1aa48c0c4af17dd3 --

[issue32735] Typo in f-string example in docs

2018-01-31 Thread STINNER Victor
STINNER Victor added the comment: @Cheryl: I concur with Mariatta, good catch, thanks! -- nosy: +vstinner ___ Python tracker ___ ___

[issue32735] Typo in f-string example in docs

2018-01-31 Thread Mariatta Wijaya
Change by Mariatta Wijaya : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue32735] Typo in f-string example in docs

2018-01-31 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue32735] Typo in f-string example in docs

2018-01-31 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 581ce25e1ffa374e62547ef266b6326bee0c54e5 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-32735: Fix typo in f-strings datetime format specifier example (GH-5464) (GH-5465) https://github.com/python/cpython/commit/581ce25e1ffa374e62547ef

[issue32735] Typo in f-string example in docs

2018-01-31 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset b299393cc372f3ecbef4304f8eaa4c7838e975ca by Mariatta (Cheryl Sabella) in branch 'master': bpo-32735: Fix typo in f-strings datetime format specifier example (GH-5464) https://github.com/python/cpython/commit/b299393cc372f3ecbef4304f8eaa4c7838e97

[issue32735] Typo in f-string example in docs

2018-01-31 Thread miss-islington
Change by miss-islington : -- pull_requests: +5291 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32735] Typo in f-string example in docs

2018-01-31 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Good catch! I checked my presentation slides (where this example comes from). It appeared that I meant it as %b, so the output should have been `Jan` instead of `January`. But no strong preference, the idea is to demonstrate how to use the specifier, so %B

[issue32735] Typo in f-string example in docs

2018-01-31 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +5290 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue32735] Typo in f-string example in docs

2018-01-31 Thread Cheryl Sabella
New submission from Cheryl Sabella : On the lexical analysis doc page, in f-strings example, the following example isn't quite right: >>> f"{today:%b %d, %Y}" # using date format specifier 'January 27, 2017' Submitting a patch shortly to use %B instead of %b. -- assignee: docs@python