[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] Re: Recent Mac OS X fixes for pygame



Just noticed that I could install pygame 1.5.6 though the Package
Manger... I installed sdl_pygame_deps-1.2.5-binary which places the
Headers version (devel) in /Library/Frameworks.  This makes my other
manual install issues moot.  Just tell people to use the Package
Manager!  Nice.

* Brian Hammond <pygame@brianhammond.com> [2003-08-13 03:01]:
> yes, that should be the fix for config_darwin.py - thanks
> 
> * Richard Jones <richardjones@optushome.com.au> [2003-08-13 02:15]:
> Content-Description: signed data
> > On Wed, 13 Aug 2003 12:05 pm, Brian Hammond wrote:
> > > Also, it seems that
> > > os.path.isfile("~/Library/Frameworks/SDL.framework/Versions/Current/SDL")
> > > returns False even though it IS just a regular file.
> > 
> > os.path functions don't inherently support "~" expansion. Use the expanduser() 
> > function to do that:
> > 
> > Python 2.2.3 (#2, Jul 10 2003, 17:50:55)
> > [GCC 3.3.1 (Mandrake Linux 9.2 3.3.1-0.2mdk)] on linux-i386
> > Type "help", "copyright", "credits" or "license" for more information.
> > >>> import os.path
> > >>> os.path.isfile('~/.pypirc')
> > 0
> > >>> os.path.isfile('/home/richard/.pypirc')
> > 1
> > >>> os.path.isfile(os.path.expanduser('~/.pypirc'))
> > 1
> > >>>
> > 
> > 
> >      Richard
> 
> 
> 
> -- 
> 
> -Brian, brianhammond.com

-- 

-Brian, brianhammond.com