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 mark.dickinson
Recipients
Date 2007-06-29.23:37:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
And also on Python 2.5, compiled under Apple's GCC. (Still OS X 10.4.10/G4)
The following four lines of Python code are enough to cause the problem for me.

Interestingly, if the second and third lines are exchanged (so that the two import commands come first), then no exception is raised.

Python 2.5.1 (r251:54863, May 10 2007, 20:59:25) 
[GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import CDLL
>>> CDLL('/System/Library/Frameworks/GLUT.framework/GLUT').glutWireTetrahedron
<_FuncPtr object at 0x514500>
>>> import sqlite3
>>> sqlite3.connect(":memory:")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
sqlite3.ProgrammingError: library routine called out of sequence

History
Date User Action Args
2007-08-23 14:44:18adminlinkissue1581906 messages
2007-08-23 14:44:18admincreate