[pygame] BUG: Surface.get_abs_parent documentation

2006-07-09 Thread Alex Holkner
This sentence is incorrect: If this is not a subsurface then None will be returned. self is returned if the surface is not a subsurface. Alex.

Re: [pygame] pygame website - request for suggestions

2006-07-09 Thread James Mills
On Sat, Jul 08, 2006 at 06:52:26AM -0700, Phil Hassey wrote: Hey, Hi, It's been one year since I launched the new pygame website. I hope to have a bit of time during the next month to do some updates to it. So if anyone has: And a fantastic job you've done too :) - bug reports -

[pygame] Re: pygame website - request for suggestions

2006-07-09 Thread Horst F. JENS
It's been one year since I launched the new pygame website. It is a very fine website. I would not know what to do without it. - feature requests In around two months time my pygamebook should be ready so i will ask later for an link.. -- Horst F. JENS email:[EMAIL PROTECTED] ,

Re: [pygame] pygame website - request for suggestions

2006-07-09 Thread René Dudfield
Allow comments on the projects. +1 on RSS feeds. On 7/8/06, Phil Hassey [EMAIL PROTECTED] wrote: Hey, It's been one year since I launched the new pygame website. I hope to have a bit of time during the next month to do some updates to it. So if anyone has: - bug reports - feature

[pygame] pygame.display.set_caption() not setting window icon

2006-07-09 Thread David Mikesell
I'm using Pygame 1.7.1 on Windows XP. set_icon sets the icon when the window is collapsed, set_caption sets the caption, and get_caption shows the correct file name of the icontitle. Anyone else having problems with this? __screen__ = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT)) icon

Re: [pygame] pygame.display.set_caption() not setting window icon

2006-07-09 Thread Brian Fisher
On 7/9/06, David Mikesell [EMAIL PROTECTED] wrote: I'm using Pygame 1.7.1 on Windows XP. set_icon sets the icon when the window is collapsed, set_caption sets the caption, and get_caption shows the correct file name of the icontitle. Anyone else having problems with this? I don't think

Re: [pygame] BUG: Surface.get_abs_parent documentation

2006-07-09 Thread René Dudfield
Thanks! that's fixed in svn. Committed revision 827. On 7/9/06, Alex Holkner [EMAIL PROTECTED] wrote: This sentence is incorrect: If this is not a subsurface then None will be returned. self is returned if the surface is not a subsurface. Alex.

Re: [pygame] BUG: Surface.convert documentation

2006-07-09 Thread René Dudfield
Thanks! This has been fixed in svn. Committed revision 828. On 7/8/06, Alex Holkner [EMAIL PROTECTED] wrote: Surface.convert(depth, masks): return Surface is not a valid signature; however Surface.convert(masks, flags=0): return Surface is, but is not specified. Alex.