[issue41750] unpractical printing of datetimes by the interpreter

2020-09-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The UTC timezone implementation in the stdlib works well: >>> import datetime >>> datetime.datetime(2020, 9, 9, 8, 0, tzinfo=datetime.timezone.utc) datetime.datetime(2020, 9, 9, 8, 0, tzinfo=datetime.timezone.utc) I guess you use a third-part implementation

[issue41750] unpractical printing of datetimes by the interpreter

2020-09-09 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +belopolsky, p-ganssle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue41750] unpractical printing of datetimes by the interpreter

2020-09-09 Thread J Rt
New submission from J Rt : I think the way datetimes get printed by the interpreter is a bit unpractical. For example: datetime.datetime(2020, 9, 9, 8, 0, tzinfo=) The reason for the inpracticality is that this cannot be put right into python back: >>>datetime.datetime(2020, 9, 9, 8, 0, tz