On Jun 8, 12:18 am, "Alex Holkner" <[EMAIL PROTECTED]> wrote:
> Please post the output of `python -m pyglet.info`, I'll add a
> workaround for your device.

% python -m pyglet.info
/Library/Frameworks/Python.framework/Versions/2.4/Resources/Python.app/
Contents/MacOS/Python: module pyglet.info not found
Exit 2

Probably not the right command, but I don't know what to do instead.
Maybe this is relevant:

% python
Python 2.4.4 (#1, Oct 18 2006, 10:34:39)
[GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyglet
>>> pyglet.info
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'module' object has no attribute 'info'
>>> pyglet
<module 'pyglet' from '/Library/Frameworks/Python.framework/Versions/
2.4/lib/python2.4/site-packages/pyglet/__init__.pyc'>
>>>

% ls -saF /Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages/pyglet
total 480
 0 ./                   64 clock.py              0
font/                24 lib.py               40 sprite.py
 0 ../                  56 clock.pyc             0
gl/                  24 lib.pyc              40 sprite.pyc
24 __init__.py          16 com.py                0
graphics/             0 media/                0 text/
16 __init__.pyc         32 event.py              0
image/               48 resource.py           0 window/
 0 app/                 32 event.pyc            16
info.py              48 resource.pyc
%

I can see from info.py that it wants to be executed as __main__ -- not
sure
how to do that... doing cd site-packages first doesn't make it work.
Let's try it manually... ok, that finally worked:

[!657] /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/
site-packages % python
Python 2.4.4 (#1, Oct 18 2006, 10:34:39)
[GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyglet
>>> pyglet.info.dump()
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'module' object has no attribute 'info'
>>> from pyglet import info
>>> info.dump()
Python
------------------------------------------------------------------------------
sys.version: 2.4.4 (#1, Oct 18 2006, 10:34:39)
[GCC 4.0.1 (Apple Computer, Inc. build 5341)]
sys.platform: darwin
os.getcwd(): /Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/site-packages

pyglet
------------------------------------------------------------------------------
pyglet.version: 1.1beta2
pyglet.__file__: pyglet/__init__.pyc
pyglet.options['debug_trace_depth'] = 1
pyglet.options['audio'] = ('directsound', 'openal', 'alsa', 'silent')
pyglet.options['xsync'] = True
pyglet.options['shadow_window'] = True
pyglet.options['debug_win32'] = False
pyglet.options['debug_gl_trace'] = False
pyglet.options['debug_x11'] = False
pyglet.options['debug_font'] = False
pyglet.options['debug_media'] = False
pyglet.options['debug_trace'] = False
pyglet.options['debug_lib'] = False
pyglet.options['graphics_vbo'] = True
pyglet.options['vsync'] = None
pyglet.options['debug_trace_args'] = False
pyglet.options['debug_gl'] = True
pyglet.options['debug_graphics_batch'] = False
pyglet.options['font'] = ('gdiplus', 'win32')
pyglet.options['debug_texture'] = False
pyglet.options['debug_gl_trace_args'] = False

pyglet.window
------------------------------------------------------------------------------
platform: <pyglet.window.carbon.CarbonPlatform object at 0x11d08f0>
display: <pyglet.window.carbon.CarbonDisplay object at 0x11d0910>
screens[0]: CarbonScreen(x=0, y=0, width=1440, height=900)
config['double_buffer'] = 1
config['stereo'] = 0
config['buffer_size'] = 32
config['aux_buffers'] = 0
config['sample_buffers'] = 0
config['samples'] = 0
config['red_size'] = 8
config['green_size'] = 8
config['blue_size'] = 8
config['alpha_size'] = 8
config['depth_size'] = 32
config['stencil_size'] = 0
config['accum_red_size'] = 8
config['accum_green_size'] = 8
config['accum_blue_size'] = 8
config['accum_alpha_size'] = 0
context: CarbonGLContext()

pyglet.gl.gl_info
------------------------------------------------------------------------------
gl_info.get_version(): 2.0 ATI-1.4.56
gl_info.get_vendor(): ATI Technologies Inc.
gl_info.get_renderer(): ATI Radeon X1600 OpenGL Engine
gl_info.get_extensions():
   GL_APPLE_client_storage
   GL_APPLE_element_array
   GL_APPLE_fence
   GL_APPLE_float_pixels
   GL_APPLE_flush_buffer_range
   GL_APPLE_flush_render
   GL_APPLE_packed_pixels
   GL_APPLE_pixel_buffer
   GL_APPLE_specular_vector
   GL_APPLE_texture_range
   GL_APPLE_transform_hint
   GL_APPLE_vertex_array_object
   GL_APPLE_vertex_array_range
   GL_APPLE_vertex_program_evaluators
   GL_APPLE_ycbcr_422
   GL_ARB_depth_texture
   GL_ARB_draw_buffers
   GL_ARB_fragment_program
   GL_ARB_fragment_program_shadow
   GL_ARB_fragment_shader
   GL_ARB_imaging
   GL_ARB_multisample
   GL_ARB_multitexture
   GL_ARB_occlusion_query
   GL_ARB_pixel_buffer_object
   GL_ARB_point_parameters
   GL_ARB_point_sprite
   GL_ARB_shader_objects
   GL_ARB_shader_texture_lod
   GL_ARB_shading_language_100
   GL_ARB_shadow
   GL_ARB_shadow_ambient
   GL_ARB_texture_border_clamp
   GL_ARB_texture_compression
   GL_ARB_texture_cube_map
   GL_ARB_texture_env_add
   GL_ARB_texture_env_combine
   GL_ARB_texture_env_crossbar
   GL_ARB_texture_env_dot3
   GL_ARB_texture_float
   GL_ARB_texture_mirrored_repeat
   GL_ARB_texture_non_power_of_two
   GL_ARB_texture_rectangle
   GL_ARB_transpose_matrix
   GL_ARB_vertex_blend
   GL_ARB_vertex_buffer_object
   GL_ARB_vertex_program
   GL_ARB_vertex_shader
   GL_ARB_window_pos
   GL_ATI_blend_equation_separate
   GL_ATI_blend_weighted_minmax
   GL_ATI_separate_stencil
   GL_ATI_text_fragment_shader
   GL_ATI_texture_compression_3dc
   GL_ATI_texture_env_combine3
   GL_ATI_texture_float
   GL_ATI_texture_mirror_once
   GL_EXT_abgr
   GL_EXT_bgra
   GL_EXT_blend_color
   GL_EXT_blend_equation_separate
   GL_EXT_blend_func_separate
   GL_EXT_blend_minmax
   GL_EXT_blend_subtract
   GL_EXT_clip_volume_hint
   GL_EXT_compiled_vertex_array
   GL_EXT_draw_range_elements
   GL_EXT_fog_coord
   GL_EXT_framebuffer_object
   GL_EXT_gpu_program_parameters
   GL_EXT_multi_draw_arrays
   GL_EXT_packed_depth_stencil
   GL_EXT_rescale_normal
   GL_EXT_secondary_color
   GL_EXT_separate_specular_color
   GL_EXT_shadow_funcs
   GL_EXT_stencil_two_side
   GL_EXT_stencil_wrap
   GL_EXT_texture_compression_dxt1
   GL_EXT_texture_compression_s3tc
   GL_EXT_texture_env_add
   GL_EXT_texture_filter_anisotropic
   GL_EXT_texture_lod_bias
   GL_EXT_texture_mirror_clamp
   GL_EXT_texture_rectangle
   GL_IBM_rasterpos_clip
   GL_NV_blend_square
   GL_NV_fog_distance
   GL_NV_light_max_exponent
   GL_NV_texgen_reflection
   GL_SGIS_generate_mipmap
   GL_SGIS_texture_edge_clamp
   GL_SGIS_texture_lod
   GL_SGI_color_matrix

pyglet.gl.glu_info
------------------------------------------------------------------------------
glu_info.get_version(): 1.3 MacOSX
glu_info.get_extensions():

pyglet.gl.glx_info
------------------------------------------------------------------------------
GLX not available.

pyglet.media
------------------------------------------------------------------------------
driver: pyglet.media.drivers.openal

pyglet.media.avbin
------------------------------------------------------------------------------
Library: <CDLL '/usr/local/lib/libavbin.dylib', handle 10f3e0 at
1253ae70>
AVbin version: 5
FFmpeg revision: 13661

pyglet.media.drivers.openal
------------------------------------------------------------------------------
Library: <CDLL '/System/Library/Frameworks/OpenAL.framework/OpenAL',
handle 10e9a0 at 12ffb30>
Version: (1, 1)
Extensions:
   ALC_EXT_CAPTURE
   ALC_ENUMERATION_EXT
   ALC_EXT_MAC_OSX
   ALC_EXT_ASA
>>>

> Please also post the stack trace you got.

Here it is (below), copied from CrashReporter. But first, it occurred
to me
that if there is a minimum version requirement for ctypes, I forgot to
check whether I meet it. Let's see what I have (someone else installed
it,
I inherited this computer with this Python installation):

>>> import ctypes
>>> ctypes.__version__
'1.0.2'

(If this is too low, then I suggest pyglet ought to check it
and warn me.)

Also, in case it helps, here's a listing of my site-packages:

[!664] /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/
site-packages % ls -saF
[Jun  8 21:13]
total 5624
   0 ./                                    8
README                                0 pyglet/
   0 ../                                1104
_ctypes.so                            0 pyglet-1.1beta1-py2.5.egg-
info/
   0 Numeric/                            184
_ctypes_test.so                       0 pyglet-1.1beta2-py2.5.egg-
info/
   8 Numeric.pth                          88 altgraph-0.6.7-
py2.4.egg              0 setuptools-0.6c3-py2.4.egg/
   0 OpenGL.old/                          72 bdist_mpkg-0.4.2-
py2.4.egg            8 setuptools.pth
   0 PIL/                                  0
ctypes/                             312 sip.so*
   0 PIL.old/                              8 easy-
install.pth                    128 sip.so.old*
   8 PIL.pth                             120 macholib-1.1-
py2.4.egg              168 sipconfig.py
   8 PIL.pth.old                          56 modulegraph-0.7-
py2.4.egg           160 sipconfig.py.old
3040 PyOpenGL-3.0.0a6-py2.4.egg            0
numarray/                           128 sipconfig.pyc
   0 PyQt4/                                0
numpy/                                8 sipdistutils.py
   0 PyQt4.old/                            0
psyco/                                8 sipdistutils.py.old
   0 Pyrex/                                0 py2app-0.3.5-py2.4.egg/

Here's the CrashReporter report from trying it again:

[!667] .../pyglet/pyglet-1.1beta2-docs/examples % python text_input.py
Bus error
Exit 138

Date/Time:      2008-06-08 21:15:36.815 -0700
OS Version:     10.4.11 (Build 8S2167)
Report Version: 4

Command: Python
Path:    /Library/Frameworks/Python.framework/Versions/2.4/Resources/
Python.app/Contents/MacOS/Python
Parent:  tcsh [372]

Version: 2.4a0 (2.4alpha1)

PID:    2455
Thread: 0

Exception:  EXC_BAD_ACCESS (0x0001)
Codes:      KERN_PROTECTION_FAILURE (0x0002) at 0x00000004

Thread 0 Crashed:
0   <<00000000>>        0x019b4e60 0 + 26955360
1   GLEngine            0x01314199 gleDrawArraysOrElements_Core + 157
2   GLEngine            0x01398eef gleDrawArraysOrElements_VBO_Exec +
853
3   libGL.dylib         0x92b25575 glDrawArrays + 97
4   _ctypes.so          0x007125cd .LCFI1 + 23 (darwin.S:84)
5   _ctypes.so          0x00712566 ffi_call + 98 (ffi_darwin.c:265)
6   _ctypes.so          0x0070d3a2 _CallProc + 355 (callproc.c:679)
7   _ctypes.so          0x007086b8 CFuncPtr_call + 268 (_ctypes.c:3362)
8   org.python.python   0x0020d73f PyObject_Call + 45 (abstract.c:1795)
9   org.python.python   0x0027e233 PyEval_EvalFrame + 16838 (ceval.c:
3776)
10  org.python.python   0x00280501 PyEval_EvalCodeEx + 1774 (ceval.c:
2741)
11  org.python.python   0x0027e33b PyEval_EvalFrame + 17102 (ceval.c:
3661)
12  org.python.python   0x00280501 PyEval_EvalCodeEx + 1774 (ceval.c:
2741)
13  org.python.python   0x0027e33b PyEval_EvalFrame + 17102 (ceval.c:
3661)
14  org.python.python   0x0027ea46 PyEval_EvalFrame + 18905 (ceval.c:
3651)
15  org.python.python   0x00280501 PyEval_EvalCodeEx + 1774 (ceval.c:
2741)
16  org.python.python   0x00227f23 function_call + 320 (funcobject.c:
548)
17  org.python.python   0x0020d73f PyObject_Call + 45 (abstract.c:1795)
18  org.python.python   0x0027e538 PyEval_EvalFrame + 17611 (ceval.c:
3845)
19  org.python.python   0x00280501 PyEval_EvalCodeEx + 1774 (ceval.c:
2741)
20  org.python.python   0x00227f23 function_call + 320 (funcobject.c:
548)
21  org.python.python   0x0020d73f PyObject_Call + 45 (abstract.c:1795)
22  org.python.python   0x00215527 instancemethod_call + 401
(classobject.c:2532)
23  org.python.python   0x0020d73f PyObject_Call + 45 (abstract.c:1795)
24  org.python.python   0x0027e538 PyEval_EvalFrame + 17611 (ceval.c:
3845)
25  org.python.python   0x00280501 PyEval_EvalCodeEx + 1774 (ceval.c:
2741)
26  org.python.python   0x0027e33b PyEval_EvalFrame + 17102 (ceval.c:
3661)
27  org.python.python   0x0027ea46 PyEval_EvalFrame + 18905 (ceval.c:
3651)
28  org.python.python   0x00280501 PyEval_EvalCodeEx + 1774 (ceval.c:
2741)
29  org.python.python   0x0027e33b PyEval_EvalFrame + 17102 (ceval.c:
3661)
30  org.python.python   0x0027ea46 PyEval_EvalFrame + 18905 (ceval.c:
3651)
31  org.python.python   0x0027ea46 PyEval_EvalFrame + 18905 (ceval.c:
3651)
32  org.python.python   0x00280501 PyEval_EvalCodeEx + 1774 (ceval.c:
2741)
33  org.python.python   0x00280741 PyEval_EvalCode + 87 (ceval.c:490)
34  org.python.python   0x002a7496 PyRun_FileExFlags + 200 (pythonrun.c:
1285)
35  org.python.python   0x002a7779 PyRun_SimpleFileExFlags + 640
(pythonrun.c:869)
36  org.python.python   0x002b1284 Py_Main + 3199 (main.c:493)
37  org.python.python   0x000018b2 0x1000 + 2226
38  org.python.python   0x000017cd 0x1000 + 1997

Thread 0 crashed with X86 Thread State (32-bit):
  eax: 0x01958434  ebx: 0x017d4020  ecx: 0x1563f050  edx: 0x00000000
  edi: 0x00000000  esi: 0x1563f050  ebp: 0xbfffce78  esp: 0xbfffce6c
   ss: 0x0000001f  efl: 0x00010246  eip: 0x019b4e60   cs: 0x00000017
   ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037

Binary Images Description:
    0x1000 -     0x1fff org.python.python 2.4a0 (2.4alpha1)     /Library/
Frameworks/Python.framework/Versions/2.4/Resources/Python.app/Contents/
MacOS/Python
   0xa3000 -    0xa5fff struct.so       /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/lib-dynload/struct.so
   0xb1000 -    0xb1fff gestalt.so      /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/lib-dynload/gestalt.so
   0xcd000 -    0xcefff cStringIO.so    /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/lib-dynload/cStringIO.so
  0x205000 -   0x2ddfff org.python.python 2.4a0 (2.2)   /Library/
Frameworks/Python.framework/Versions/2.4/Python
  0x705000 -   0x713fff _ctypes.so      /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/site-packages/_ctypes.so
  0x748000 -   0x74afff itertools.so    /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/lib-dynload/itertools.so
  0x79a000 -   0x79afff _weakref.so     /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/lib-dynload/_weakref.so
 0x1008000 -  0x100bfff strop.so        /Library/Frameworks/Python.framework/
Versions/2.4/lib/python2.4/lib-dynload/strop.so
 0x113d000 -  0x113efff MacOS.so        /Library/Frameworks/Python.framework/
Versions/2.4/lib/python2.4/lib-dynload/MacOS.so
 0x11b5000 -  0x11b7fff unicodedata.so  /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/lib-dynload/unicodedata.so
 0x12d1000 -  0x142afff GLEngine        /System/Library/Frameworks/
OpenGL.framework/Resources/GLEngine.bundle/GLEngine
 0x1456000 -  0x1644fff com.apple.ATIRadeonX1000GLDriver 1.4.56
(4.5.6) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/
Contents/MacOS/ATIRadeonX1000GLDriver
 0x1680000 -  0x169cfff GLDriver        /System/Library/Frameworks/
OpenGL.framework/Versions/A/Resources/GLDriver.bundle/GLDriver
 0x16a3000 -  0x16c7fff GLRendererFloat         /System/Library/Frameworks/
OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/
GLRendererFloat
0x14a2e000 - 0x14a2ffff math.so         /Library/Frameworks/Python.framework/
Versions/2.4/lib/python2.4/lib-dynload/math.so
0x14a38000 - 0x14a3bfff array.so        /Library/Frameworks/Python.framework/
Versions/2.4/lib/python2.4/lib-dynload/array.so
0x14c12000 - 0x14c13fff time.so         /Library/Frameworks/Python.framework/
Versions/2.4/lib/python2.4/lib-dynload/time.so
0x14c1d000 - 0x14c1ffff operator.so     /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/lib-dynload/operator.so
0x14c8a000 - 0x14c8cfff zlib.so         /Library/Frameworks/Python.framework/
Versions/2.4/lib/python2.4/lib-dynload/zlib.so
0x14fe2000 - 0x1500bfff _imaging.so     /Library/Frameworks/
Python.framework/Versions/2.4/lib/python2.4/site-packages/PIL/
_imaging.so
0x8fe00000 - 0x8fe4afff dyld 46.16      /usr/lib/dyld
0x90000000 - 0x90171fff libSystem.B.dylib       /usr/lib/libSystem.B.dylib
0x901c1000 - 0x901c3fff libmathCommon.A.dylib   /usr/lib/system/
libmathCommon.A.dylib
0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???)  /System/Library/
Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
CoreText.framework/Versions/A/CoreText
0x90229000 - 0x902fffff ATS     /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
Versions/A/ATS
0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.78 (???)   /System/
Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/CoreGraphics
0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35)        /
System/Library/Frameworks/CoreFoundation.framework/Versions/A/
CoreFoundation
0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)       /System/
Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x90913000 - 0x90a07fff libicucore.A.dylib      /usr/lib/
libicucore.A.dylib
0x90a57000 - 0x90ad6fff libobjc.A.dylib         /usr/lib/libobjc.A.dylib
0x90aff000 - 0x90b63fff libstdc++.6.dylib       /usr/lib/libstdc++.6.dylib
0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib        /usr/lib/libgcc_s.1.dylib
0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???)   /System/
Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90c66000 - 0x90c78fff libauto.dylib   /usr/lib/libauto.dylib
0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.28        /
System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
CarbonCore.framework/Versions/A/CarbonCore
0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1   /System/
Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
OSServices.framework/Versions/A/OSServices
0x91008000 - 0x91047fff com.apple.CFNetwork 129.22 (129.23)     /System/
Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
CFNetwork.framework/Versions/A/CFNetwork
0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0)     /System/
Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
WebServicesCore.framework/Versions/A/WebServicesCore
0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.7       /System/Library/
Frameworks/CoreServices.framework/Versions/A/Frameworks/
SearchKit.framework/Versions/A/SearchKit
0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36)      /System/
Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
Metadata.framework/Versions/A/Metadata
0x91158000 - 0x91166fff libz.1.dylib    /usr/lib/libz.1.dylib
0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774)        /System/
Library/Frameworks/Security.framework/Versions/A/Security
0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/
Library/Frameworks/DiskArbitration.framework/Versions/A/
DiskArbitration
0x91415000 - 0x9141cfff libbsm.dylib    /usr/lib/libbsm.dylib
0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6     /System/
Library/Frameworks/SystemConfiguration.framework/Versions/A/
SystemConfiguration
0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/
Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???)        /
System/Library/Frameworks/ApplicationServices.framework/Versions/A/
ApplicationServices
0x91521000 - 0x9154cfff com.apple.AE 314 (313)  /System/Library/
Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
AE.framework/Versions/A/AE
0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.10      /System/Library/
Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
ColorSync.framework/Versions/A/ColorSync
0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6
(177.13)        /System/Library/Frameworks/ApplicationServices.framework/
Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9170f000 - 0x917b8fff com.apple.QD 3.10.25 (???)      /System/Library/
Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
QD.framework/Versions/A/QD
0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???)        /System/
Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
HIServices.framework/Versions/A/HIServices
0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3    /System/Library/
Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
LangAnalysis.framework/Versions/A/LangAnalysis
0x9186a000 - 0x91884fff com.apple.FindByContent 1.5     /System/Library/
Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
FindByContent.framework/Versions/A/FindByContent
0x9188e000 - 0x918cbfff com.apple.LaunchServices 182    /System/Library/
Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
LaunchServices.framework/Versions/A/LaunchServices
0x918df000 - 0x918ebfff com.apple.speech.synthesis.framework 3.5        /
System/Library/Frameworks/ApplicationServices.framework/Versions/A/
Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x918f2000 - 0x91932fff com.apple.ImageIO.framework 1.5.7       /System/
Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
ImageIO.framework/Versions/A/ImageIO
0x91945000 - 0x919f7fff libcrypto.0.9.7.dylib   /usr/lib/libcrypto.
0.9.7.dylib
0x91a3d000 - 0x91a53fff libcups.2.dylib         /usr/lib/libcups.2.dylib
0x91a58000 - 0x91a76fff libJPEG.dylib   /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libJPEG.dylib
0x91a7b000 - 0x91adafff libJP2.dylib    /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libJP2.dylib
0x91aec000 - 0x91af0fff libGIF.dylib    /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libGIF.dylib
0x91af2000 - 0x91b7afff libRaw.dylib    /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libRaw.dylib
0x91b7e000 - 0x91bbbfff libTIFF.dylib   /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libTIFF.dylib
0x91bc1000 - 0x91bdcfff libPng.dylib    /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libPng.dylib
0x91be1000 - 0x91be3fff libRadiance.dylib       /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
Versions/A/Resources/libRadiance.dylib
0x91be5000 - 0x91cc3fff libxml2.2.dylib         /usr/lib/libxml2.2.dylib
0x91ce0000 - 0x91ce0fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1)   /
System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91ce2000 - 0x91d70fff com.apple.vImage 2.5    /System/Library/
Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/
Versions/A/vImage
0x91d77000 - 0x91d77fff com.apple.Accelerate.vecLib 3.3.1 (vecLib
3.3.1)  /System/Library/Frameworks/Accelerate.framework/Versions/A/
Frameworks/vecLib.framework/Versions/A/vecLib
0x91d79000 - 0x91dd2fff libvMisc.dylib  /System/Library/Frameworks/
Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
libvMisc.dylib
0x91ddb000 - 0x91dfffff libvDSP.dylib   /System/Library/Frameworks/
Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
libvDSP.dylib
0x91e07000 - 0x92210fff libBLAS.dylib   /System/Library/Frameworks/
Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
libBLAS.dylib
0x9224a000 - 0x925fefff libLAPACK.dylib         /System/Library/Frameworks/
Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
libLAPACK.dylib
0x9262b000 - 0x92718fff libiconv.2.dylib        /usr/lib/libiconv.2.dylib
0x9271a000 - 0x92798fff com.apple.DesktopServices 1.3.7 /System/
Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/
DesktopServicesPriv
0x927d9000 - 0x92a09fff com.apple.Foundation 6.4.10 (567.37)    /System/
Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92b23000 - 0x92b3afff libGL.dylib     /System/Library/Frameworks/
OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92b45000 - 0x92b9dfff libGLU.dylib    /System/Library/Frameworks/
OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92bb1000 - 0x92bb1fff com.apple.Carbon 10.4 (???)     /System/Library/
Frameworks/Carbon.framework/Versions/A/Carbon
0x92bb3000 - 0x92bc3fff com.apple.ImageCapture 3.0.4    /System/Library/
Frameworks/Carbon.framework/Versions/A/Frameworks/
ImageCapture.framework/Versions/A/ImageCapture
0x92bd2000 - 0x92bdafff com.apple.speech.recognition.framework 3.6      /
System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
SpeechRecognition.framework/Versions/A/SpeechRecognition
0x92be0000 - 0x92be5fff com.apple.securityhi 2.0.1 (24742)      /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
SecurityHI.framework/Versions/A/SecurityHI
0x92beb000 - 0x92c7cfff com.apple.ink.framework 101.2.1 (71)    /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
Ink.framework/Versions/A/Ink
0x92c90000 - 0x92c93fff com.apple.help 1.0.3 (32.1)     /System/Library/
Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/
Versions/A/Help
0x92c96000 - 0x92cb4fff com.apple.openscripting 1.2.5 (???)     /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
OpenScripting.framework/Versions/A/OpenScripting
0x92cc6000 - 0x92cccfff com.apple.print.framework.Print 5.1 (192.3)     /
System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
Print.framework/Versions/A/Print
0x92cd2000 - 0x92d35fff com.apple.htmlrendering 66.1 (1.1.3)    /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
HTMLRendering.framework/Versions/A/HTMLRendering
0x92d59000 - 0x92d9afff com.apple.NavigationServices 3.4.4 (3.4.3)      /
System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
NavigationServices.framework/Versions/A/NavigationServices
0x92dc1000 - 0x92dcefff com.apple.audio.SoundManager 3.9.1      /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
CarbonSound.framework/Versions/A/CarbonSound
0x92dd5000 - 0x92ddafff com.apple.CommonPanels 1.2.3 (73)       /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
CommonPanels.framework/Versions/A/CommonPanels
0x92ddf000 - 0x930d4fff com.apple.HIToolbox 1.4.10 (???)        /System/
Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
HIToolbox.framework/Versions/A/HIToolbox
0x931da000 - 0x931e5fff com.apple.opengl 1.4.16 /System/Library/
Frameworks/OpenGL.framework/OpenGL
0x93d62000 - 0x93e1bfff com.apple.audio.toolbox.AudioToolbox 1.4.7      /
System/Library/Frameworks/AudioToolbox.framework/Versions/A/
AudioToolbox
0x93e5e000 - 0x93e5efff com.apple.audio.units.AudioUnit 1.4.2   /System/
Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x940b0000 - 0x940eafff libGLImage.dylib        /System/Library/Frameworks/
OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x94299000 - 0x942a8fff libCGATS.A.dylib        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x942af000 - 0x942bafff libCSync.A.dylib        /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x94306000 - 0x94320fff libRIP.A.dylib  /System/Library/Frameworks/
ApplicationServices.framework/Versions/A/Frameworks/
CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x94326000 - 0x9463dfff com.apple.QuickTime 7.4.5 (67)  /System/Library/
Frameworks/QuickTime.framework/QuickTime
0x97501000 - 0x975d8fff libGLProgrammability.dylib      /System/Library/
Frameworks/OpenGL.framework/Versions/A/Libraries/
libGLProgrammability.dylib
0x975f3000 - 0x975f4fff libGLSystem.dylib       /System/Library/Frameworks/
OpenGL.framework/Versions/A/Libraries/libGLSystem.dylib
0x975f6000 - 0x975fbfff com.apple.agl 2.5.9 (AGL-2.5.9) /System/
Library/Frameworks/AGL.framework/AGL

Model: MacBookPro1,1, BootROM MBP11.0055.B08, 2 processors, Intel Core
Duo, 2 GHz, 1 GB
Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x86),
1.3.5
Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial
ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: FUJITSU MHV2100BH, 93.16 GB
Parallel ATA Device: MATSHITADVD-R   UJ-857
USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/
sec, 500 mA
USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to
12 Mb/sec, 500 mA
USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA


Let me know if more experiments would be useful.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to