Cheuk Ting Ho
Cheuk Ting Ho
This is starting to give me some pain. I am happy to look into a possible solution and attempt a PR.
I have also just put back the location page without individual chapter pages, all the links to chpater website and social medias are external links
Thank you for bring this to the April meeting @econchick please kindly let me know if there's any follow up actions that need help.
It's ok @trallard , it was fun to create this PR. Let me know if you want any help in the future. Shall I close it for now?
@Zac-HD I want to try `Reorder new-style unions using | so that None is last`. By the way, is `Flatten syntatically nested Union or Literal instances` covered by #37 already?
I think the `Reorder new-style unions using | so that None is last` case is done with #39 I will then try `Flatten syntactically nested Union or Literal instances` then
@Zac-HD I guess this it the nested Union example: `Union[int, Optional[str], bool] # Union[int, str, bool, None]` and this is the nested Literal example: `Literal[1, 2] | None # Literal[1,...
I think the last task is not ready till 2023?
From [here](https://www.ucd.ie/sys-mgt/y2k/tech/ms/white.in/ctime.htm).), on 32 bit Windows actual range for C datetime is midnight, January 1, 1970, to January 18, 19:14:07, 2038, I wonder how is the MIN and MAX range...
According to [this](https://docs.python.org/3/library/datetime.html) datetime itself does not limit the range in C level, you will get an OverflowError or OSError (which is exactly what we have above). So I doubt...