This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: zipimport.c is broken on 64-bit SusE AMD, here's a fix
Type: Stage:
Components: Extension Modules Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benson_basis, hyeshik.chang
Priority: normal Keywords: patch

Created on 2003-12-11 15:27 by benson_basis, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
zipimport.c.patch benson_basis, 2003-12-11 15:27 patch to Moduleszipimport.c
Messages (3)
msg45035 - (view) Author: benson margulies (benson_basis) Date: 2003-12-11 15:27
The code passed a -15 to a 'l' format, but -15 is not 
promoted to long, it's passed as an int. Casting the -15 
to long fixes the problem.
msg45036 - (view) Author: benson margulies (benson_basis) Date: 2003-12-11 19:39
Logged In: YES 
user_id=876734

I've marked this 2.4, but someone else (like someone at 
SuSe) might like to see it sooner.
msg45037 - (view) Author: Hyeshik Chang (hyeshik.chang) * (Python committer) Date: 2003-12-17 05:56
Logged In: YES 
user_id=55188

This problem is already fixed in zipimport.c rev 1.17.
History
Date User Action Args
2022-04-11 14:56:01adminsetgithub: 39697
2003-12-11 15:27:42benson_basiscreate