Back to bug 1329141

Who When What Removed Added
Petr Viktorin 2016-04-26 08:10:24 UTC CC pviktori
Charalampos Stratakis 2016-04-26 10:08:18 UTC Status NEW ASSIGNED
CC cstratak
Assignee python-maint cstratak
Charalampos Stratakis 2016-04-26 11:45:20 UTC Keywords Patch
Lukáš Zachar 2016-04-26 13:54:21 UTC QA Contact qe-baseos-apps bnater
Matěj Cepl 2016-04-26 14:18:41 UTC CC mcepl
Kiersten (Kerri) Anderson 2016-04-27 11:48:06 UTC CC kanderso
Charalampos Stratakis 2016-04-28 15:34:30 UTC Doc Text Cause: fileobject.c uses a 32 bit value for INT_MAX (2147483647)

Consequence: Iteration over files bigger than 2147483647B fails with an exception

Fix: Use Py_ssize_t value which has the same size as the compiler's size_t type instead of int value

Result: It's possible to iteratete over big files (<(2^64/2)B)
Charalampos Stratakis 2016-04-29 12:25:04 UTC Status ASSIGNED MODIFIED
errata-xmlrpc 2016-04-29 12:26:30 UTC Status MODIFIED ON_QA
Charalampos Stratakis 2016-04-29 12:27:05 UTC Summary Python 2.6 installation is not 64 bit clean Python installation is not 64 bit clean
Lenka Špačková 2016-05-03 12:34:37 UTC Doc Text Cause: fileobject.c uses a 32 bit value for INT_MAX (2147483647)

Consequence: Iteration over files bigger than 2147483647B fails with an exception

Fix: Use Py_ssize_t value which has the same size as the compiler's size_t type instead of int value

Result: It's possible to iteratete over big files (<(2^64/2)B)
The fileobject.c file uses a 32-bit value for the INT_MAX constant, which is 2147483647 bytes. Consequently, iteration over files bigger than this value fails with a traceback.
Lenka Špačková 2016-05-03 12:35:41 UTC Doc Text The fileobject.c file uses a 32-bit value for the INT_MAX constant, which is 2147483647 bytes. Consequently, iteration over files bigger than this value fails with a traceback.
Doc Type Bug Fix Known Issue
Red Hat Bugzilla 2016-05-03 12:35:41 UTC Doc Type Known Issue Bug Fix
Lenka Špačková 2016-05-03 12:36:07 UTC Doc Text The fileobject.c file uses a 32-bit value for the INT_MAX constant, which is 2147483647 bytes. Consequently, iteration over files bigger than this value fails with a traceback.
Doc Type Bug Fix Known Issue
errata-xmlrpc 2016-05-12 13:34:50 UTC Status ON_QA VERIFIED
errata-xmlrpc 2016-05-31 00:53:03 UTC Status VERIFIED RELEASE_PENDING
errata-xmlrpc 2016-05-31 10:26:02 UTC Status RELEASE_PENDING CLOSED
Resolution --- ERRATA
Last Closed 2016-05-31 06:26:02 UTC

Back to bug 1329141