On Tue, Nov 4, 2014 at 7:15 PM, Roberto MartÃnez
wrote:
>
>
> On Tue, Nov 4, 2014 at 8:06 PM, Skip Montanaro
> wrote:
>>
>>
>> On Tue, Nov 4, 2014 at 1:01 PM, Roberto MartÃnez
>> wrote:
>>>
>>> The workaround of calling a different method inside __call__ is not valid
>>> for my case because I wa
On 10 Dec 2014 17:16, "Ian Cordasco" wrote:
>
> On Wed, Dec 10, 2014 at 11:10 AM, Donald Stufft wrote:
> >
> > On Dec 10, 2014, at 11:59 AM, Bruno Cauet wrote:
> >
> > Hi all,
> > Last year a survey was conducted on python 2 and 3 usage.
> > Here is the 2014 edition, slightly updated (from 9 to
> I want to make a binary file , which would execute on it's own.
First do
$ which python
to get the location of your python binary. The default, i think, is just
/usr/bin/python.
Then add this line to the top of your file:
#!/usr/bin/python (or whatever the `which` command returned)
th