[issue13986] ValueError: cannot convert float NaN to integer

2019-10-22 Thread STINNER Victor
STINNER Victor added the comment: The issue has not been seen since 2017-03-04, I close the issue as out of date. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue13986] ValueError: cannot convert float NaN to integer

2017-11-23 Thread Gregory P. Smith
Change by Gregory P. Smith : -- nosy: -gregory.p.smith ___ Python tracker ___ ___

[issue13986] ValueError: cannot convert float NaN to integer

2017-11-23 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-32119. -- ___ Python tracker ___

[issue13986] ValueError: cannot convert float NaN to integer

2017-03-04 Thread David Robins
David Robins added the comment: I saw a similar error with Python 3.6 on a MIPS (32-bit - mipsisa32r2el-axis-linux-gnu) platform, but during interpreter startup, not install (perhaps because it was cross-compiled so install on the host doesn't run the target Python). It was due to building

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-16 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: FYI - A similar NaN appearing in an unexpected place (the random module in this case) bug that I just filed - http://bugs.python.org/issue14028. I don't actually know if these will be related or not. -- nosy: +gregory.p.smith

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-16 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: My guess would be not related. My best guess for this issue is that it's caused by some mismatch in the struct stat declarations / uses on MIPS / Linux. A Google search for MIPS and stat suggests that there are problems in this area.

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-13 Thread Shivam
Shivam shivam.agar...@aricent.com added the comment: Hi Terry, Thanks for your reply. I am made changes suggested by you but still getting the same error: Below is the change that have been made: try: local_var = (os.fstat(f.fileno()).st_mtime) -- added line

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-13 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: It's going to be tricky for any of the core Python developers to solve this based on the current level of information---unless anyone has access to a MIPs machine and can reproduce the error, that is. Can you find a local expert who knows

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-11 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: If I believe the error message, os.fstat(f.fileno()).st_mtime is returning a NaN, which would be a bug in our function or your system. Since os.fstat should be a thin wrapper over the system call, I would lean to the latter. I do not know if

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-10 Thread Shivam
New submission from Shivam shivam.agar...@aricent.com: Hi Team, Kindly help me in resolving below issue which arises when we do make install as it is show stopper for us. Listing /usr/local/lib/python2.7 ... Compiling /usr/local/lib/python2.7/BaseHTTPServer.py ... Traceback (most recent

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-10 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13986 ___ ___ Python-bugs-list

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-10 Thread Shivam
Shivam shivam.agar...@aricent.com added the comment: Hi Team, I am having this issue on mips 64bit machine running debian. Regards Shivam Agarwal -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13986

[issue13986] ValueError: cannot convert float NaN to integer

2012-02-10 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13986 ___ ___