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-30.03:56:14
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
It looks as though GLUT is a red herring.  I can reproduce the problem with a variety of frameworks in place of GLUT, for example Quartz, Cocoa, AppKit, CoreData, as in the following lines.

import ctypes
ctypes.CDLL('/System/Library/Frameworks/CoreData.framework/CoreData')
import sqlite3
sqlite3.connect(":memory:")

Furthermore, I notice that the GLUT framework has a library dependency on the AppKit framework,  AppKit on CoreData, and CoreData depends on the Apple-supplied libsqlite3, and that Quartz and Cocoa similarly ultimately depend on libsqlite3.  Coincidence?

I can reproduce the problem with a variety of frameworks in place of GLUT, for example Quartz, Cocoa, AppKit, CoreData.  (The .glutWireTetrahedron is unnecessary.)
History
Date User Action Args
2007-08-23 14:44:19adminlinkissue1581906 messages
2007-08-23 14:44:19admincreate