diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-01-28 19:21:24 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-01-28 19:21:24 (GMT) |
commit | abcb0c03ade3cee52b71362f57b16af3e00c743b (patch) | |
tree | a4afc16116d2e0d08a0ea162932cb635b550bde0 /Misc | |
parent | 54fb192508130fa17df5b252c63d125218907035 (diff) | |
download | cpython-abcb0c03ade3cee52b71362f57b16af3e00c743b.zip cpython-abcb0c03ade3cee52b71362f57b16af3e00c743b.tar.gz cpython-abcb0c03ade3cee52b71362f57b16af3e00c743b.tar.bz2 |
Fix SF bug# 676155, RuntimeWarning with tp_compare
Check return value of PyLong_AsDouble(), it can return an error.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -23,6 +23,10 @@ Core and builtins - Fixed crash when printing a subclass of str and __str__ returned self. See SF bug #667147. +- Fixed an invalid RuntimeWarning and an undetected error when trying + to convert a long integer into a float which couldn't fit. + See SF bug #676155. + Extension modules ----------------- |