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.

Author abduelt
Recipients abduelt
Date 2013-07-18.10:33:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374143636.97.0.424755315923.issue18490@psf.upfronthosting.co.za>
In-reply-to
Content
Hi all,

I'm ebedding a python program into C++ ecap library. Everything works fine until I'v try to import sqlite3. When I try to import it I give the following exception:
Traceback (most recent call last):
', '  File "/usr/local/squid/bin/putAdds.py", line 4, in <module>
    import sqlite3
', '  File "/usr/lib/python2.7/sqlite3/__init__.py", line 24, in <module>
    from dbapi2 import *
', '  File "/usr/lib/python2.7/sqlite3/dbapi2.py", line 24, in <module>
    import datetime
', 'ImportError: /usr/lib/python2.7/lib-dynload/datetime.i386-linux-gnu.so: undefined symbol: PyExc_SystemError

So it seems that is a problem in datetime module. How can i solve that?

Thanks and regards
Abdul
History
Date User Action Args
2013-07-18 10:33:57abdueltsetrecipients: + abduelt
2013-07-18 10:33:56abdueltsetmessageid: <1374143636.97.0.424755315923.issue18490@psf.upfronthosting.co.za>
2013-07-18 10:33:56abdueltlinkissue18490 messages
2013-07-18 10:33:56abdueltcreate