[pysqlite] Error during test period of installing pysqlite
Wei Wan <[email protected]> Thu, 23 Jul 2009 15:10:51 +0800
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <[email protected]> |
--===============1358550995==
Content-Type: multipart/alternative; boundary=000e0cd50a6c1e7a3a046f5a3014
--000e0cd50a6c1e7a3a046f5a3014
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Hi:
I installed pysqlite-2.5.5 from source, and the two periods,"build" and
"install" are correct(I think it is), but when it came to "Test", there
occured a mistake with output likes below:
[root@oneserver pysqlite-2.5.5]# python
Python 2.5.4 (r254:67916, Jul 21 2009, 10:48:33)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from pysqlite2 import test
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "pysqlite2/test/__init__.py", line 35, in <module>
from pysqlite2.test import dbapi, types, userfunctions, factory,
transactions,\
File "pysqlite2/test/dbapi.py", line 27, in <module>
import pysqlite2.dbapi2 as sqlite
File "pysqlite2/dbapi2.py", line 27, in <module>
from pysqlite2._sqlite import *
ImportError: No module named _sqlite
[root@oneserver pysqlite-2.5.5]# uname -a
Linux oneserver 2.6.18-128.el5xen #1 SMP Wed Dec 17 12:01:40 EST 2008 x86_64
x86_64 x86_64 GNU/Linux
Sqlite
[root@oneserver Python-2.5.4]# sqlite3
SQLite version 3.5.9
Enter ".help" for instructions
sqlite>
Python 2.5.4
[root@oneserver Python-2.5.4]# python
Python 2.5.4 (r254:67916, Jul 21 2009, 10:48:33)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
build & install info
[root@oneserver pysqlite-2.5.5]# python setup.py build
running build
running build_py
creating build
creating build/lib.linux-x86_64-2.5
creating build/lib.linux-x86_64-2.5/pysqlite2
copying pysqlite2/__init__.py -> build/lib.linux-x86_64-2.5/pysqlite2
copying pysqlite2/dump.py -> build/lib.linux-x86_64-2.5/pysqlite2
copying pysqlite2/dbapi2.py -> build/lib.linux-x86_64-2.5/pysqlite2
creating build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/py25tests.py ->
build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/hooks.py -> build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/types.py -> build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/transactions.py ->
build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/userfunctions.py ->
build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/dbapi.py -> build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/__init__.py ->
build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/dump.py -> build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/regression.py ->
build/lib.linux-x86_64-2.5/pysqlite2/test
copying pysqlite2/test/factory.py ->
build/lib.linux-x86_64-2.5/pysqlite2/test
running build_ext
building 'pysqlite2._sqlite' extension
creating build/temp.linux-x86_64-2.5
creating build/temp.linux-x86_64-2.5/src
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c
src/module.c -o build/temp.linux-x86_64-2.5/src/module.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c
src/connection.c -o build/temp.linux-x86_64-2.5/src/connection.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c
src/cursor.c -o build/temp.linux-x86_64-2.5/src/cursor.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c src/cache.c
-o build/temp.linux-x86_64-2.5/src/cache.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c
src/microprotocols.c -o build/temp.linux-x86_64-2.5/src/microprotocols.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c
src/prepare_protocol.c -o build/temp.linux-x86_64-2.5/src/prepare_protocol.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c
src/statement.c -o build/temp.linux-x86_64-2.5/src/statement.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c src/util.c
-o build/temp.linux-x86_64-2.5/src/util.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -fPIC -DMODULE_NAME="pysqlite2.dbapi2"
-DSQLITE_OMIT_LOAD_EXTENSION=1 -I/usr/local/include/python2.5 -c src/row.c
-o build/temp.linux-x86_64-2.5/src/row.o
gcc -pthread -shared build/temp.linux-x86_64-2.5/src/module.o
build/temp.linux-x86_64-2.5/src/connection.o
build/temp.linux-x86_64-2.5/src/cursor.o
build/temp.linux-x86_64-2.5/src/cache.o
build/temp.linux-x86_64-2.5/src/microprotocols.o
build/temp.linux-x86_64-2.5/src/prepare_protocol.o
build/temp.linux-x86_64-2.5/src/statement.o
build/temp.linux-x86_64-2.5/src/util.o build/temp.linux-x86_64-2.5/src/row.o
-lsqlite3 -o build/lib.linux-x86_64-2.5/pysqlite2/_sqlite.so
[root@oneserver pysqlite-2.5.5]# python setup.py install
running install
running build
running build_py
running build_ext
running install_lib
creating /usr/local/lib/python2.5/site-packages/pysqlite2
copying build/lib.linux-x86_64-2.5/pysqlite2/_sqlite.so ->
/usr/local/lib/python2.5/site-packages/pysqlite2
copying build/lib.linux-x86_64-2.5/pysqlite2/__init__.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2
creating /usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/py25tests.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/hooks.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/types.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/transactions.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/userfunctions.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/dbapi.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/__init__.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/dump.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/regression.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/test/factory.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2/test
copying build/lib.linux-x86_64-2.5/pysqlite2/dump.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2
copying build/lib.linux-x86_64-2.5/pysqlite2/dbapi2.py ->
/usr/local/lib/python2.5/site-packages/pysqlite2
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/__init__.py
to __init__.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/py25tests.py to
py25tests.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/hooks.py to hooks.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/types.py to types.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/transactions.py to
transactions.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/userfunctions.py to
userfunctions.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/dbapi.py to dbapi.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/__init__.py to
__init__.pyc
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/test/dump.py
to dump.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/regression.py to
regression.pyc
byte-compiling
/usr/local/lib/python2.5/site-packages/pysqlite2/test/factory.py to
factory.pyc
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/dump.py to
dump.pyc
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/dbapi2.py to
dbapi2.pyc
running install_data
creating /usr/local/pysqlite2-doc
copying doc/install-source.txt -> /usr/local/pysqlite2-doc
creating /usr/local/pysqlite2-doc/code
running install_egg_info
Writing /usr/local/lib/python2.5/site-packages/pysqlite-2.5.5-py2.5.egg-info
And i also tried to build with "build_static" instead, but it didn't work,
Any suggestions? Thank you!
--000e0cd50a6c1e7a3a046f5a3014
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Hi:<br>=A0=A0 I installed pysqlite-2.5.5 from source, and the two periods,&=
quot;build" and "install" are correct(I think it is), but wh=
en it came to "Test", there occured a mistake with output likes b=
elow:<br>
<br>[root@oneserver pysqlite-2.5.5]# python<br>Python 2.5.4 (r254:67916, Ju=
l 21 2009, 10:48:33) <br>[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux2<=
br>Type "help", "copyright", "credits" or &qu=
ot;license" for more information.<br>
>>> from pysqlite2 import test<br>Traceback (most recent call last=
):<br>=A0 File "<stdin>", line 1, in <module><br>=A0 =
File "pysqlite2/test/__init__.py", line 35, in <module><br>
=A0=A0=A0 from pysqlite2.test import dbapi, types, userfunctions, factory, =
transactions,\<br>=A0 File "pysqlite2/test/dbapi.py", line 27, in=
<module><br>=A0=A0=A0 import pysqlite2.dbapi2 as sqlite<br>=A0 File =
"pysqlite2/dbapi2.py", line 27, in <module><br>
=A0=A0=A0 from pysqlite2._sqlite import *<br>ImportError: No module named _=
sqlite<br><br>[root@oneserver pysqlite-2.5.5]# uname -a<br>Linux oneserver =
2.6.18-128.el5xen #1 SMP Wed Dec 17 12:01:40 EST 2008 x86_64 x86_64 x86_64 =
GNU/Linux<br>
<br>Sqlite<br>[root@oneserver Python-2.5.4]# sqlite3<br>SQLite version 3.5.=
9<br>Enter ".help" for instructions<br>sqlite> <br><br>Python =
2.5.4<br>[root@oneserver Python-2.5.4]# python<br>Python 2.5.4 (r254:67916,=
Jul 21 2009, 10:48:33) <br>
[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] on linux2<br>Type "help",=
"copyright", "credits" or "license" for more=
information.<br>>>> <br><br><br>build & install info<br><br>
[root@oneserver pysqlite-2.5.5]# python setup.py build<br>running build<br>=
running build_py<br>creating build<br>creating build/lib.linux-x86_64-2.5<b=
r>creating build/lib.linux-x86_64-2.5/pysqlite2<br>copying pysqlite2/__init=
__.py -> build/lib.linux-x86_64-2.5/pysqlite2<br>
copying pysqlite2/dump.py -> build/lib.linux-x86_64-2.5/pysqlite2<br>cop=
ying pysqlite2/dbapi2.py -> build/lib.linux-x86_64-2.5/pysqlite2<br>crea=
ting build/lib.linux-x86_64-2.5/pysqlite2/test<br>copying pysqlite2/test/py=
25tests.py -> build/lib.linux-x86_64-2.5/pysqlite2/test<br>
copying pysqlite2/test/hooks.py -> build/lib.linux-x86_64-2.5/pysqlite2/=
test<br>copying pysqlite2/test/types.py -> build/lib.linux-x86_64-2.5/py=
sqlite2/test<br>copying pysqlite2/test/transactions.py -> build/lib.linu=
x-x86_64-2.5/pysqlite2/test<br>
copying pysqlite2/test/userfunctions.py -> build/lib.linux-x86_64-2.5/py=
sqlite2/test<br>copying pysqlite2/test/dbapi.py -> build/lib.linux-x86_6=
4-2.5/pysqlite2/test<br>copying pysqlite2/test/__init__.py -> build/lib.=
linux-x86_64-2.5/pysqlite2/test<br>
copying pysqlite2/test/dump.py -> build/lib.linux-x86_64-2.5/pysqlite2/t=
est<br>copying pysqlite2/test/regression.py -> build/lib.linux-x86_64-2.=
5/pysqlite2/test<br>copying pysqlite2/test/factory.py -> build/lib.linux=
-x86_64-2.5/pysqlite2/test<br>
running build_ext<br>building 'pysqlite2._sqlite' extension<br>crea=
ting build/temp.linux-x86_64-2.5<br>creating build/temp.linux-x86_64-2.5/sr=
c<br>gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstri=
ct-prototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_O=
MIT_LOAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/module.c -o bu=
ild/temp.linux-x86_64-2.5/src/module.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/connection.c -o bui=
ld/temp.linux-x86_64-2.5/src/connection.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/cursor.c -o build/t=
emp.linux-x86_64-2.5/src/cursor.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/cache.c -o build/te=
mp.linux-x86_64-2.5/src/cache.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/microprotocols.c -o=
build/temp.linux-x86_64-2.5/src/microprotocols.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/prepare_protocol.c =
-o build/temp.linux-x86_64-2.5/src/prepare_protocol.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/statement.c -o buil=
d/temp.linux-x86_64-2.5/src/statement.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/util.c -o build/tem=
p.linux-x86_64-2.5/src/util.o<br>
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pr=
ototypes -fPIC -DMODULE_NAME=3D"pysqlite2.dbapi2" -DSQLITE_OMIT_L=
OAD_EXTENSION=3D1 -I/usr/local/include/python2.5 -c src/row.c -o build/temp=
.linux-x86_64-2.5/src/row.o<br>
gcc -pthread -shared build/temp.linux-x86_64-2.5/src/module.o build/temp.li=
nux-x86_64-2.5/src/connection.o build/temp.linux-x86_64-2.5/src/cursor.o bu=
ild/temp.linux-x86_64-2.5/src/cache.o build/temp.linux-x86_64-2.5/src/micro=
protocols.o build/temp.linux-x86_64-2.5/src/prepare_protocol.o build/temp.l=
inux-x86_64-2.5/src/statement.o build/temp.linux-x86_64-2.5/src/util.o buil=
d/temp.linux-x86_64-2.5/src/row.o -lsqlite3 -o build/lib.linux-x86_64-2.5/p=
ysqlite2/_sqlite.so<br>
[root@oneserver pysqlite-2.5.5]# python setup.py install<br>running install=
<br>running build<br>running build_py<br>running build_ext<br>running insta=
ll_lib<br>creating /usr/local/lib/python2.5/site-packages/pysqlite2<br>
copying build/lib.linux-x86_64-2.5/pysqlite2/_sqlite.so -> /usr/local/li=
b/python2.5/site-packages/pysqlite2<br>copying build/lib.linux-x86_64-2.5/p=
ysqlite2/__init__.py -> /usr/local/lib/python2.5/site-packages/pysqlite2=
<br>
creating /usr/local/lib/python2.5/site-packages/pysqlite2/test<br>copying b=
uild/lib.linux-x86_64-2.5/pysqlite2/test/py25tests.py -> /usr/local/lib/=
python2.5/site-packages/pysqlite2/test<br>copying build/lib.linux-x86_64-2.=
5/pysqlite2/test/hooks.py -> /usr/local/lib/python2.5/site-packages/pysq=
lite2/test<br>
copying build/lib.linux-x86_64-2.5/pysqlite2/test/types.py -> /usr/local=
/lib/python2.5/site-packages/pysqlite2/test<br>copying build/lib.linux-x86_=
64-2.5/pysqlite2/test/transactions.py -> /usr/local/lib/python2.5/site-p=
ackages/pysqlite2/test<br>
copying build/lib.linux-x86_64-2.5/pysqlite2/test/userfunctions.py -> /u=
sr/local/lib/python2.5/site-packages/pysqlite2/test<br>copying build/lib.li=
nux-x86_64-2.5/pysqlite2/test/dbapi.py -> /usr/local/lib/python2.5/site-=
packages/pysqlite2/test<br>
copying build/lib.linux-x86_64-2.5/pysqlite2/test/__init__.py -> /usr/lo=
cal/lib/python2.5/site-packages/pysqlite2/test<br>copying build/lib.linux-x=
86_64-2.5/pysqlite2/test/dump.py -> /usr/local/lib/python2.5/site-packag=
es/pysqlite2/test<br>
copying build/lib.linux-x86_64-2.5/pysqlite2/test/regression.py -> /usr/=
local/lib/python2.5/site-packages/pysqlite2/test<br>copying build/lib.linux=
-x86_64-2.5/pysqlite2/test/factory.py -> /usr/local/lib/python2.5/site-p=
ackages/pysqlite2/test<br>
copying build/lib.linux-x86_64-2.5/pysqlite2/dump.py -> /usr/local/lib/p=
ython2.5/site-packages/pysqlite2<br>copying build/lib.linux-x86_64-2.5/pysq=
lite2/dbapi2.py -> /usr/local/lib/python2.5/site-packages/pysqlite2<br>
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/__init__.py=
to __init__.pyc<br>byte-compiling /usr/local/lib/python2.5/site-packages/p=
ysqlite2/test/py25tests.py to py25tests.pyc<br>byte-compiling /usr/local/li=
b/python2.5/site-packages/pysqlite2/test/hooks.py to hooks.pyc<br>
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/test/types.=
py to types.pyc<br>byte-compiling /usr/local/lib/python2.5/site-packages/py=
sqlite2/test/transactions.py to transactions.pyc<br>byte-compiling /usr/loc=
al/lib/python2.5/site-packages/pysqlite2/test/userfunctions.py to userfunct=
ions.pyc<br>
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/test/dbapi.=
py to dbapi.pyc<br>byte-compiling /usr/local/lib/python2.5/site-packages/py=
sqlite2/test/__init__.py to __init__.pyc<br>byte-compiling /usr/local/lib/p=
ython2.5/site-packages/pysqlite2/test/dump.py to dump.pyc<br>
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/test/regres=
sion.py to regression.pyc<br>byte-compiling /usr/local/lib/python2.5/site-p=
ackages/pysqlite2/test/factory.py to factory.pyc<br>byte-compiling /usr/loc=
al/lib/python2.5/site-packages/pysqlite2/dump.py to dump.pyc<br>
byte-compiling /usr/local/lib/python2.5/site-packages/pysqlite2/dbapi2.py t=
o dbapi2.pyc<br>running install_data<br>creating /usr/local/pysqlite2-doc<b=
r>copying doc/install-source.txt -> /usr/local/pysqlite2-doc<br>creating=
/usr/local/pysqlite2-doc/code<br>
running install_egg_info<br>Writing /usr/local/lib/python2.5/site-packages/=
pysqlite-2.5.5-py2.5.egg-info<br><br>And i also tried to build with "b=
uild_static" instead, but it didn't work, Any suggestions? Thank y=
ou!<br>
<br><br><br>
--000e0cd50a6c1e7a3a046f5a3014--
--===============1358550995==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
list-pysqlite mailing list
list-pysqlite-FR6EJeJVuqdwc357pe9rcyQmJico6nz3epZhswDD4dQ@public.gmane.org
http://itsystementwicklung.de/cgi-bin/mailman/listinfo/list-pysqlite
--===============1358550995==--