Re: Question about compiling python 30 from subversion repository on OSX

2011-04-23 Thread Ned Deily
In article , Anthony Kong wrote: > I have checked out source code from this url > http://svn.python.org/projects/python/branches/py3k, then run > > ./configure --with-universal-archs=64-bit > make > > First of all, I got this message: > > --- > Mo

Question about compiling python 30 from subversion repository on OSX

2011-04-23 Thread Anthony Kong
Hi, all, I have checked out source code from this url http://svn.python.org/projects/python/branches/py3k, then run ./configure --with-universal-archs=64-bit make First of all, I got this message: --- Modules/Setup.dist is newer than Modules/Setup;

Re: Question about compiling.

2007-01-10 Thread tac-tics
> That's not the whole truth. :) The whole truth is that from a developer's POV, .pyc files are unimportant. -- http://mail.python.org/mailman/listinfo/python-list

Re: Question about compiling.

2007-01-10 Thread Rob Wolfe
Gabriel Genellina <[EMAIL PROTECTED]> writes: > At Tuesday 9/1/2007 14:56, Steven W. Orr wrote: > >>I *just* read the tutorial so please be gentle. I created a file called >>fib.py which works very nicely thank you. When I run it it does what it's >>supposed to do but I do not get a resulting .pyc

Re: Question about compiling.

2007-01-10 Thread Bjoern Schliessmann
Steven W. Orr wrote: > I *just* read the tutorial so please be gentle. I created a file > called fib.py which works very nicely thank you. When I run it it > does what it's supposed to do but I do not get a resulting .pyc > file. .pyc files are created only if you import a .py file. Regards,

Re: Question about compiling.

2007-01-10 Thread Gabriel Genellina
At Tuesday 9/1/2007 14:56, Steven W. Orr wrote: I *just* read the tutorial so please be gentle. I created a file called fib.py which works very nicely thank you. When I run it it does what it's supposed to do but I do not get a resulting .pyc file. The tutorial says I shouldn't do anything speci

Question about compiling.

2007-01-10 Thread Steven W. Orr
I *just* read the tutorial so please be gentle. I created a file called fib.py which works very nicely thank you. When I run it it does what it's supposed to do but I do not get a resulting .pyc file. The tutorial says I shouldn't do anything special to create it. I have machines that have both

Re: Python Question About Compiling.

2006-12-01 Thread Paul Boddie
Fredrik Lundh wrote: > yndesai wrote: > > > Is it that no compiling facility is hindering the growth of python > > in commercial circuit . . . ? I can see the point of people who are confused about single file executables for Python programs, who are possibly new to the technology and don't know w

Re: Python Question About Compiling.

2006-11-30 Thread Fredrik Lundh
yndesai wrote: > Is it that no compiling facility is hindering the growth of python > in commercial circuit . . . ? good thing most commercial Python developers haven't noticed this, then. if you don't know that some random guy on the internet thinks that some- thing doesn't exist, there's no

RE: Python Question About Compiling.

2006-11-30 Thread yndesai
I got attracted to python since I heard about PythonCAD, while I used Fortran and Basic during graduation days & VBA for some macros in Office. I liked the python as it seems smart. But without compiling it is a trouble to end user. I downloaded PythonCAD and am still searching for the libraries

Re: Python Question About Compiling.

2006-11-30 Thread Tim Roberts
"Scheol Service" <[EMAIL PROTECTED]> wrote: > >Im just unsure on how to compile python code into .exe executionable >files. Is there a simple way to do this? Sort of. Python code is not compiled to machine language. Instead, it is compiled to an intermediate language that is then interpreted.

Re: Python Question About Compiling.

2006-11-29 Thread Gabriel G
At Thursday 30/11/2006 03:40, Scheol Service wrote: i know this. Is there better directions on how to use it? Have you tried it? What's your actual problem? See http://www.py2exe.org/ -- Gabriel Genellina Softlab SRL __ Correo Yahoo! Espacio

Re: Python Question About Compiling.

2006-11-29 Thread Fredrik Lundh
Scheol Service wrote: > Im just unsure on how to compile python code into .exe executionable > files. Is there a simple way to do this? typing "compile python code" into google gives you http://effbot.org/zone/python-compile.htm which gives you some background, and links to a bunch of bun

Re: Python Question About Compiling.

2006-11-29 Thread Gabriel Genellina
At Thursday 30/11/2006 02:02, Scheol Service wrote: Im just unsure on how to compile python code into .exe executionable files. Is there a simple way to do this? py2exe -- Gabriel Genellina Softlab SRL __ Correo Yahoo! Espacio para todos tu

Python Question About Compiling.

2006-11-29 Thread Scheol Service
-- Forwarded message -- From: Scheol Service <[EMAIL PROTECTED]> Date: Nov 29, 2006 10:57 PM Subject: Python Question About Compiling. To: mailto:python-list@python.org Im just unsure on how to compile python code into .exe executionable files. Is there a simple way to d