>>>>> Jack Jansen <[EMAIL PROTECTED]> (JJ) wrote:
JJ> There's yet another new version of the Python 2.3 fix installer available:
JJ> <http://www.cwi.nl/~jack/macpython/JaguarPythonFix.dmg>.
Apparently now (correctly) named PantherPythonFix.dmg
--
Piet van
>>>>> Jack Jansen <[EMAIL PROTECTED]> (JJ) wrote:
JJ> There's yet another new version of the Python 2.3 fix installer available:
JJ> <http://www.cwi.nl/~jack/macpython/JaguarPythonFix.dmg>.
Apparently now (correctly) named PantherPythonFix.dmg
--
Piet van
; that instantiates objects that can instantiate fresh new objects
RJ> of that same class... without external controller code.
Every instance of a class can instantiate new objects of that class. I
don't know a programming language where that is not possible. But what do
you mean with external co
install
darwinports in /usr/local because I don't want yet another directory tree.
There are still traces of /sw/lib in my installed software but once these
are used they fail. I am working on finding all traces and removing them.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http:/
pygtk works only with X11, it won't give you a
native Aqua interface. This is because GTK is not native on MacOSX.
And yes, it can be compiled (I did it myself).
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP]
Private email: [EMAIL PROTECTED]
___
;\\'+self.filename,'r')
which is pathetic (the \\).
It should use os.path.join instead.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP]
Private email: [EMAIL PROTECTED]
___
Pythonmac-SIG maillist - Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
o
build/temp.darwin-7.9.0-Power_Macintosh-2.3/src/R_eval.o
build/temp.darwin-7.9.0-Power_Macintosh-2.3/src/io.o
-L/Library/Frameworks/R.framework/Resources/lib -lR -o
build/lib.darwin-7.9.0-Power_Macintosh-2.3/_rpy.so
and redo the python setup.py install afterw
e()
We now have a file with name 'รก'
>>> import os
>>> os.listdir (u'.')
[u'a\u0301']
The accent follows the 'a'.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP 8DAE142BE17999C4]
Private email: [EMAIL PROTECTED]
___
Pythonmac-SIG maillist - Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
0.4.2, if it matters.
Issue a mount or, more specifically, a mount_smbfs command through
os.system or the subprocess module or some such.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP 8DAE142BE17999C4]
Private email: [EMAIL PROTECTED]
_
ur crash, but I saw something strange
in your code: model is an element of models, not an index. So unless you
have something special, that code might not be what is intended.
If it goes through a Fortran thing it may cause an out of bounds error.
--
Piet van Oostrum <[EMAIL PROTECTED]>
U
e used both PostgreSQL and MySQL from Python on Mac OSX with no
>SM> problems. Another guy here at work has used Sybase on his Mac (built
>SM> the Object Craft module against the FreeTDS stuff). Pick your poison.
Firebird also works with Python.
--
Piet van Oostrum <[EMAIL PROTE
lly finished.
os.system does wait.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP 8DAE142BE17999C4]
Private email: [EMAIL PROTECTED]
___
Pythonmac-SIG maillist - Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
of readline. I suggest
>s> you just comment out the readline checks in setup.py.
libedit (editline) is a different library with a similar function as
readline, but not compatible with it. It has a BSD license. It is often
used instead of readline for non-GPL software.
--
Piet van Oost
But your error message was about a missing
/System/Library/Frameworks/Python.framework/Versions/2.3/Python, i.e. not
/Library/Frameworks/Python.framework, so it seems you removed
/Systems/Library/Frameworks/Python.framework instead, contrary to the
instruction.
You will have to reinstall it, otherwise som
,
>FH> Textwrangler recognizes the file as "MacRoman" encoded and the content is
>FH> garbled.
Then that is Textwrangler's fault. Interpreting a utf-8 file as MacRoman
will indeed give garbage. Maybe you can configure Te
to the
environment variables, no matter how they are accomplished. So to set the
environment for the Finder can only be done before (or while) launching the
Finder.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP 8DAE142BE17999C4]
Private email: [EMAIL PROTECTED
ind installers for any earlier versions of XCode.
When you haven't XCode installed, how come you have gcc?
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP 8DAE142BE17999C4]
Private email: [EMAIL PROTECTED]
___
Pyth
>>>>> Ronald Oussoren <[EMAIL PROTECTED]> (RO) wrote:
>RO> Michael, do you have a /Developer folder on your system? If you do
>RO> you have some edition of the developer tools installed.
IIRC, the developer tools had a different name than XCode in older
v
version of QuickTime if I knew how (I'm
>MG> not using QuickTime), but haven't discovered any way to do it.
Did you (re)install the QuickTime SDK *after* installing QuickTime 7? That
might help.
--
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://ww
ns I build from source go into /usr/local/.
/Library/Frameworks is the way to go, and you can make symlinks from
/usr/local/bin.
To make from source:
MACOSX_DEPLOYMENT_TARGET=10.4 ./configure --enable-framework
make
sudo make frameworkinstall
--
Piet van Oostrum <[EMAIL PROTECTE
x, and vice
versa. This can lead to unexpected behaviour.
If, however, you say 'import module' and then use module.x, then it is the
same variable, and changes in the imported module's x will be visible in
the importing module's module.x and vice versa.
--
Piet van Oostrum
asses, functions, etc).
But then you can have the same interaction between the different modules.
from graphics import *
from statistics import *
Now statistics can `shadow' a variable from graphics, for example if the
both have a function 'draw'.
Of course the same could happen
/.profile ~/.bashrc ~/.login ~/.bash_profile, ~/.bash_login, ~/.cshrc
~/.tcshrc
/etc/csh.cshrc /etc/csh.login /etc/profile /etc/bashrc
~/.MacOSX/environment.plist
Apparently Zope has added something. Systems like these tend to insert stuff
in the /etc files because these are system-wide.
--
Piet van Oo
l list. First time I've seen them all at once.
>GW> Are there any more?
The /etc/rc* files are executed at boot time under certain circumstances,
but I am not sure if the environment variables they set will reach the
shell or the desktop environment.
--
Piet v
on->Execute Buffer. For small snippets of code this may be easier,
but for complete programs the shell method may be better.
A shell can also be run outside of Aquamacs with the Terminal application.
--
Piet van Oostrum
URL: http://pietvanoostrum.com [PGP 8DAE142BE17999C4]
Private email: p...@vanoostrum.org
___
Pythonmac-SIG maillist - Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig
>>>>> Christopher Barker (CB) wrote:
>CB> Piet van Oostrum wrote:
>>> Another possibility, after Python-> start interpreter, is Python->Execute
>>> Buffer. For small snippets of code this may be easier,
>>> but for complete programs the
er hand, I find it very useful to have a Python from python.org
installed as they are usually more up to date than the Apple supplied one. If
you tell the installer to install the links in /usr/local, and put
/usr/local/bin in your PATH before /usr/bin, you will use these, and Apple will
still
27 matches
Mail list logo