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: bz2 lib missing from source distribution
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: jyoo_abn, nnorwitz
Priority: normal Keywords:

Created on 2006-07-27 21:45 by jyoo_abn, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg29337 - (view) Author: james yoo (jyoo_abn) Date: 2006-07-27 21:45
python 2.4.3

got an import error trying to test PySqlite 

"No module named bz2"

checked my python dirs and yep, no bz2... I thought
that the bz2 module was part of the standard distribution?

checked the python source dir (python-2.4.3.tar.gz) and
no bz2.py in the Lib dir.

what gives?

msg29338 - (view) Author: james yoo (jyoo_abn) Date: 2006-07-27 22:30
Logged In: YES 
user_id=1562754

actually sorry for the poor assumptions regarding the
existence of a bz2.py file... realize that there is a a
bz2module.c file and that my config.log had a bunch of fatal
ld errors... 

fyi: this is on sunOS 5.8, gcc-3.4.3..
msg29339 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2006-07-28 04:35
Logged In: YES 
user_id=33168

You'll need to ensure the bz2 dev headers and libraries are
installed to build/use the bz2 module in python.
History
Date User Action Args
2022-04-11 14:56:19adminsetgithub: 43735
2006-07-27 21:45:44jyoo_abncreate