From: Juha-Matti T. <jm...@ve...> - 2005-01-29 21:05:57
|
On Sat, Jan 29, 2005 at 06:14:23PM +0000, Grzegorz Adam Hankiewicz wrote: > What is the file allegro.c used for? I can rename it and the alpy > module is still built. If my memory serves me right, it is the original module and it is not used anymore. allegro.py seems to be it's pair as they both carry the $Log$-notation which I used to prefer a few years ago. > And why at some point in alpy.py functions like get_allegro_id or > get_default_palette are deleted? Strikes me as odd that they still > are included in documentation.txt. Everything is imported into alpy module's namespace by from _alpy import * earlier and the del-statements are propably meant to hide those imported definitions from the user. However most of these deletions are not necessary because those functions are wrapped in python-functions by the same name. |