Ah, that's what I thought as well. Unfortunately getting 1.9.4 was not straightforward. The Python 1.9.4 seems to be missing at least fnmatch, glob and binascii( built-in) modules. They did come with the previous builds. I'm not using the packager tool so the pygame build scripts need to be tweaked and binascii must be enabled in C code anyway. binascii is used by 'random'(quite often used) so I'm not that sure if it should be left out.
Code:
Traceback (most recent call last):
File "\data\pygame\pygame_main.py", line 53, in <module>
'__file__': path_to_app } )
File "\data\pygame\apps\snake.py", line 24, in <module>
import random
File "c:\resource\python25\python25.zip\site.py", line 86, in platsec_import
return _original_import(name, globals, locals, fromlist, level)
File "newcore\Lib\random.py", line 47, in <module>
File "c:\resource\python25\python25.zip\site.py", line 109, in platsec_import
raise ImportError("No module named " + name)
ImportError: No module named binascii