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.

classification
Title: no CoreGraphics library under Python 2.4
Type: Stage:
Components: macOS Versions: Python 2.4
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: jackjansen Nosy List: jackjansen, jneb, mwh
Priority: normal Keywords:

Created on 2005-05-25 14:05 by jneb, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25413 - (view) Author: Jurjen N.E. Bos (jneb) * Date: 2005-05-25 14:05
It is very simple:
Under Python 2.3:
>>> import CoreGraphics
>>>

Under Python 2.4:
>>> import CoreGraphics
Traceback (most recent call last):
  File "<input>", line 1, in ?
ImportError: No module named CoreGraphics
>>>

That's all there is to it.
I get the impression that Apple made the CoreGraphics library 
themselves, but maybe there is a trick to get it in.
PS do not confuse this with Carbon.CoreGraphics: this is not more 
than a bunch of constants.
msg25414 - (view) Author: Michael Hudson (mwh) (Python committer) Date: 2005-05-25 16:42
Logged In: YES 
user_id=6656

> I get the impression that Apple made the
> CoreGraphics library themselves.

Indeed, if you want it for Python 2.4 you'll have to ask
them for it.
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 42013
2005-05-25 14:05:18jnebcreate