In a message of Sun, 16 Aug 2015 22:05:29 -0700, rurpy--- via Python-list write
s:
>So I eventually found the kivy docs on their website where they
>list prerequisite packages for installing kivy on ubuntu. I'll
>translate those to hopefully the equivalent fedora package names,
>install them, re
For building new programs using free software, I currently like a mix
of Qt, Python, C++ and various open source SQL databases (MySQL,
PostGreSQL). I have found QtCreator an easy IDE to use in such cases, I
don't really like Eclipse.
But it requires a heavy knowledge of C++, which is not an easy
l
On Sun, Aug 16, 2015 at 7:27 PM, Albert-Jan Roskam
wrote:
>
>
>
> > Date: Sun, 16 Aug 2015 09:53:32 -0700
> > Subject: -2146826246 in win32com.client for empty #N/A cell in Excel
> > From: sven.bo...@gmail.com
> > To: python-list@python.org
> >
> >
> > Anyone know how to handle "#N/A" in Excel fr
I just installed python. But I'm unable to access IDLE after several clicks
and double clicks. I even tried repairing by trying to reinstall but I have
the same issue.
--
https://mail.python.org/mailman/listinfo/python-list
In a message of Sat, 15 Aug 2015 16:42:13 +0100, Henry Quansah writes:
>I just installed python. But I'm unable to access IDLE after several clicks
>and double clicks. I even tried repairing by trying to reinstall but I have
>the same issue.
>
What version of Python have you installed? How did yo
# first: works fine
x = [1, 2, 4, 2, 1, 3]
x = list(set(x))
x.sort()
print(x) # output: 1, 2, 3, 4
# second: why x became None ??
x = [1, 2, 4, 2, 1, 3]
x = list(set(x)).sort()
print(x) # output: None
I know that sort() returns None, but I guess that it would be returned x
that was sorted. Wh
>
> I know that sort() returns None, but I guess that it would be returned x
> that was sorted. Why so?
if it returned a sorted list it might lead some people to believe it
did not modify the oridinal list which would lead to a ton of
confusion for new users.
--
https://mail.python.org/mailman/li
On 08/17/2015 01:42 PM, Владислав wrote:
x = [1, 2, 4, 2, 1, 3]
x = list(set(x)).sort()
print(x) /# output: None/
I know that sort() returns None, but I guess that it would be returned x
that was sorted. Why so?
If sort() returns None, than the following:
x = list(set(x)).sort()
is equivalen
On 17/08/2015 12:42, Владислав wrote:
# first: works fine
x = [1, 2, 4, 2, 1, 3]
x = list(set(x))
x.sort()
print(x) /# output: 1, 2, 3, 4
/# second: why x became None ??
x = [1, 2, 4, 2, 1, 3]
x = list(set(x)).sort()
print(x) /# output: None/
I know that sort() returns None, but I guess that
On Monday, August 17, 2015 at 7:32:08 PM UTC+5:30, Владислав wrote:
> # first: works fine
> x = [1, 2, 4, 2, 1, 3]
> x = list(set(x))
> x.sort()
> print(x) # output: 1, 2, 3, 4
>
> # second: why x became None ??
> x = [1, 2, 4, 2, 1, 3]
> x = list(set(x)).sort()
> print(x) # output: None
> I kno
littletable is a little module I knocked together a few years ago, found it
sort of useful, so uploaded to SF and PyPI. The download traffic at SF is very
light, as I expected, but PyPI shows > 3000 downloads in the past month! Who
*are* all these people?
In my own continuing self-education,
Some of the PyPI traffic is for mirrors. In addition to our official
mirrors, some people/companies set up their own mirrors and suck down
everything.
Laura
--
https://mail.python.org/mailman/listinfo/python-list
Hi All,
I am using Python2.7 version, while developing basic app using kivy, I am
getting following error :
dev@synechron-desktop-156:~/myDev/mobile_app$ cat main.py
from kivy import app
from kivy.app import App
from kivy.uix.label import Label
class MyApp(App):
def build(self):
ret
> Current practice is a NamedTuple for python code or the C equivalent. I
> forget the C name, but I believe it is used by os.stat
Hi Terry,
Ok, that is what I will go with.
Thanks for the confirmation,
jlc
--
https://mail.python.org/mailman/listinfo/python-list
On Friday, August 14, 2015 at 6:13:37 AM UTC-5, sam.h...@gmail.com wrote:
> On Wednesday, April 22, 2009 at 8:36:21 AM UTC+1, David Cournapeau wrote:
> > On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote:
> > > Hi guys,
> > >
> > > I'm new to python, i downloaded version 2.5, opened
In a message of Mon, 17 Aug 2015 09:35:12 -0700, reetesh nigam writes:
>Hi All,
>
>I am using Python2.7 version, while developing basic app using kivy, I am
>getting following error :
>
>dev@synechron-desktop-156:~/myDev/mobile_app$ cat main.py
>from kivy import app
>from kivy.app import App
>fro
On Monday, August 17, 2015 at 10:35:48 AM UTC+5:30, rurpy wrote:
> I hope someday Python gets a decent packaging/distribution story.
You are in august company
| The final question was about what he (Guido) hates in Python. "Anything to do
| with package distribution", he answered immediately. The
On 8/15/2015 11:42 AM, Henry Quansah wrote:
I just installed python. But I'm unable to access IDLE after several
clicks and double clicks. I even tried repairing by trying to reinstall
but I have the same issue.
If you just installed 3.5.0rc1 on Windows, look for my fix message on or
about the
On Saturday, August 15, 2015 at 11:56:22 AM UTC-7, Laura Creighton wrote:
> If the problem is that Python is using too much memory, then PyPy may
> be able to help you. PyPy is an alternative implementation of Python,
> and by defaiult uses a minimark garbage collector.
> https://pypy.readthedocs.
In a message of Mon, 17 Aug 2015 11:40:32 -0700, Ping Liu writes:
>> Discuss this more on pypy-...@python.org or the #pypy channel on freenode.
>> People on pypy-dev would appreciate not getting libreoffice spreadsheet
>> attachments but just the figures as plain text.
>>
>> Laura
>
>Hi, Laura,
>
Perhaps most jointly parented governmental organizations are functionally,
collaborative "projects" (not organizations) which my model handles. But thanks
to Laura, will not assume there are none, or will never be any in the future,
so will use adjacent list (see fast response times documented i
Den 2015-07-31 skrev Martin Schöön :
> Den 2015-07-31 skrev Thomas 'PointedEars' Lahn :
>> Mark Lawrence wrote:
>>>
>>> I'm not absolutely certain but I think you're into what's known as a
>>> constraint satisfaction problem, in which case this
>>> https://pypi.python.org/pypi/python-constraint/1.
Hi, Dieter,
If I move from Python to Jython or IronPython, do I need to retool whatever I
have done? If so, that may take quite a long time. This may make the
reimplementation impossible.
--
https://mail.python.org/mailman/listinfo/python-list
using Python 2.7.9, I get the following:
>>> id(multiprocessing.Process.start) == id(multiprocessing.Process.start)
True
But on the other hand:
>>> multiprocessing.Process.start is multiprocessing.Process.start
False
I thought that these two expressions were equivalent. Can somebody help me to
Hi,
following up on this thread on StackOverflow
http://stackoverflow.com/questions/16515347/python-import-hooks-and-main
does somebody has a great idea how to manage this?
The issue at hand is, that I would like to apply a specific import hook
right from the beginning of the interpreter run
On Monday, August 17, 2015 at 3:24:22 PM UTC-7, alex@gmail.com wrote:
> using Python 2.7.9, I get the following:
>
> >>> id(multiprocessing.Process.start) == id(multiprocessing.Process.start)
> True
>
> But on the other hand:
>
> >>> multiprocessing.Process.start is multiprocessing.Process.s
On Mon, Aug 17, 2015 at 3:25 PM, wrote:
>
> Sorry I completely mistype that. It was supposed to read:
>
> >>> id(multiprocessing.Process.is_alive) ==
> id(multiprocessing.Process.start)
> True
>
What is going on here is that it get multiprocessing.Process.is_alive,
computes the id of it, then thr
On Mon, Aug 17, 2015 at 4:57 PM, Chris Kaynor wrote:
> The rules for the id is that they are only guaranteed unique during the
> lifespan of both objects. Also, generally, you do not want to use id or is
> for much of anything unless you really know what you are doing - generally,
> you just want
On 08/17/2015 01:52 AM, Laura Creighton wrote:
> In a message of Sun, 16 Aug 2015 22:05:29 -0700, rurpy--- via Python-list
> writes:
>> So I eventually found the kivy docs on their website where they
>> list prerequisite packages for installing kivy on ubuntu. I'll
>> translate those to hopefull
On Tue, Aug 18, 2015 at 8:09 AM, Ping Liu wrote:
> If I move from Python to Jython or IronPython, do I need to retool whatever I
> have done? If so, that may take quite a long time. This may make the
> reimplementation impossible.
You're not moving from Python to something else; you're moving f
execute commands as su on remote server
Postby hariram » Mon Aug 17, 2015 4:02 am
Needed:
I need to execute commands after doing su to other user on remote server(not
sudo which doesn't require password) how i can achieve this using python?
I googled and came to know that its not possible, so ju
On Tue, Aug 18, 2015 at 12:57 PM, wrote:
> I need to execute commands after doing su to other user on remote server(not
> sudo which doesn't require password) how i can achieve this using python?
> I googled and came to know that its not possible, so just for confirmation
> asking again, is it
On Mon, Aug 17, 2015, at 18:25, alex.fl...@gmail.com wrote:
> Sorry I completely mistype that. It was supposed to read:
>
> >>> id(multiprocessing.Process.is_alive) == id(multiprocessing.Process.start)
> True
>
> >>> multiprocessing.Process.is_alive is multiprocessing.Process.start
> False
Try t
Ping Liu writes:
> If I move from Python to Jython or IronPython, do I need to retool whatever I
> have done? If so, that may take quite a long time. This may make the
> reimplementation impossible.
As Chris already pointed out, you are still using Python -- i.e. the
base language does not ch
In a message of Tue, 18 Aug 2015 10:13:57 +1000, Chris Angelico writes:
>On Tue, Aug 18, 2015 at 8:09 AM, Ping Liu wrote:
>> If I move from Python to Jython or IronPython, do I need to retool whatever
>> I have done? If so, that may take quite a long time. This may make the
>> reimplementation i
35 matches
Mail list logo