Twas brillig at 19:33:54 08.06.2009 UTC+04 when at@altlinux.ru did gyre and gimble: AT> Но это тогда значит, что каждый питоновский модуль может AT> предоставлять более одной зависимости Provides! То есть его можно AT> загрузить как Image и как PIL.Image, и эти формы более-менее AT> равноправны. Так и есть. [dottedmag@vertex:~]% python Python 2.5.4 (r254:67916, Feb 18 2009, 03:00:47) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import Image >>> Image.__file__ '/usr/lib/python2.5/site-packages/PIL/Image.pyc' >>> import PIL.Image >>> PIL.Image.__file__ '/usr/lib/python2.5/site-packages/PIL/Image.pyc' >>> --