I downloaded the 1.9.1 source from the website, and tried to install it on my arch linux, but I get an importError when I try to import the module
Python 3.2.2 (default, Nov 21 2011, 16:50:59)
[GCC 4.6.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.2/site-packages/pygame/__init__.py", line 95, in <module>
from pygame.base import *
ImportError: /usr/lib/python3.2/site-packages/pygame/base.cpython-32mu.so: undefined symbol: PyCObject_Check
>>>
The setup script has only one problem with Python 3.2 which is the use of 'raw_input', but when I changed it to 'input' it ran without problems.