Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-10 Thread Lenard Lindstrom
René Dudfield wrote: On Fri, Jul 10, 2009 at 2:25 PM, Lenard Lindstrom le...@telus.net mailto:le...@telus.net wrote: Hi, python -m pygame.tests.__main__ python -m pygame.docs.__main__ There would be no reason to run pygame.examples, right? Yeah, maybe __main__ is good.

Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-10 Thread Lenard Lindstrom
main() was used to run an application from the command line: python -c from pygame.examples.midi import main; main() --list It was replaced with: python -m pygame.examples.midi --list pygame.tests does have a documented run() function that takes optional arguments. But pygame.tests could

[pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-09 Thread Lenard Lindstrom
Hi everyone, Here is the latest Pygame 1.9.0 (rev 2500) for Python 2.6 on Windows. Though the machine this was compiled on has a firewall and active antivirus program, it uses XP and is not mine, so take whatever precautions you feel necessary. The msi installer is:

Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-09 Thread René Dudfield
Hello, awesome. I'll put it up with the other rc3 stuff. typo with the link: http://www3.telus.net/len_l/pygame/pygame-1.9.0b03.win32-py2.6.msi cheers! On Fri, Jul 10, 2009 at 8:15 AM, Lenard Lindstrom le...@telus.net wrote: Hi everyone, Here is the latest Pygame 1.9.0 (rev 2500) for

Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-09 Thread claudio canepa
On Thu, Jul 9, 2009 at 8:55 PM, René Dudfield ren...@gmail.com wrote: Hello, awesome. I'll put it up with the other rc3 stuff. typo with the link: http://www3.telus.net/len_l/pygame/pygame-1.9.0b03.win32-py2.6.msi cheers! On Fri, Jul 10, 2009 at 8:15 AM, Lenard Lindstrom

Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-09 Thread René Dudfield
On Fri, Jul 10, 2009 at 12:06 PM, claudio canepa ccanep...@gmail.comwrote: On Thu, Jul 9, 2009 at 8:55 PM, René Dudfield ren...@gmail.com wrote: Hello, awesome. I'll put it up with the other rc3 stuff. typo with the link:

Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-09 Thread claudio canepa
On Thu, Jul 9, 2009 at 11:48 PM, René Dudfield ren...@gmail.com wrote: ... Maybe we should use: python -m pygame.tests.main python -m pygame.examples.main A bit uglier, but it will at least work! cheers, just FYI: D:\tmpc:\python26\python.exe -m pygame.tests.main

Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-09 Thread Lenard Lindstrom
René Dudfield wrote: On Fri, Jul 10, 2009 at 12:06 PM, claudio canepa ccanep...@gmail.com mailto:ccanep...@gmail.com wrote: On Thu, Jul 9, 2009 at 8:55 PM, René Dudfield ren...@gmail.com mailto:ren...@gmail.com wrote: Hello, awesome. I'll put it up with the

Re: [pygame] Pygame 1.9.0 release candidate 3 for Python 2.6 on Windows

2009-07-09 Thread René Dudfield
On Fri, Jul 10, 2009 at 2:25 PM, Lenard Lindstrom le...@telus.net wrote: Hi, python -m pygame.tests.__main__ python -m pygame.docs.__main__ There would be no reason to run pygame.examples, right? Yeah, maybe __main__ is good. Perhaps pygame.tests should have a __main__ function too?