Change by Jonathan Hsu :
--
nosy: +Jonathan Hsu
___
Python tracker
<https://bugs.python.org/issue39243>
___
___
Python-bugs-list mailing list
Unsubscribe:
Jonathan Hsu added the comment:
This is caused when tarfile tries to write a symlink that already exists. Any
exceptions to os.symlink() as handled as if the platform doesn't support
symlinks, so it scans the entire tar to try and find the linked files. When it
resumes extraction, it
Jonathan Hsu added the comment:
Thank you for the explanation.
--
___
Python tracker
<https://bugs.python.org/issue40025>
___
___
Python-bugs-list mailin
Jonathan Hsu added the comment:
It appears this issue has been fixed, as I am unable to reproduce it on Windows
10/Python 3.7:
Python 3.7.7 (tags/v3.7.7:d7c567b08f, Mar 10 2020, 10:41:24) [MSC v.1900 64 bit
(AMD64)] on win32
Type "help", "copyright", "credi
Jonathan Hsu added the comment:
This exception is raised because astimezone() ends up calling time.localtime()
to determine the appropriate time zone. If the datetime object has a pre-epoch
value, it passes a negative timestamp to time.localtime(). On Windows,
time.localtime() does not
Jonathan Hsu added the comment:
I'd like to take on this issue if no one else is working on it.
--
___
Python tracker
<https://bugs.python.org/is
Change by Jonathan Hsu :
--
nosy: +Jonathan Hsu
___
Python tracker
<https://bugs.python.org/issue36759>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Jonathan Hsu :
--
nosy: +Jonathan Hsu
___
Python tracker
<https://bugs.python.org/issue38948>
___
___
Python-bugs-list mailing list
Unsubscribe:
Jonathan Hsu added the comment:
While the current behavior may be initially unexpected, it does match the way
that python normally behaves when defining class variables. For example, the
following class will throw an exception because the function number_two() is
called before it is defined