On 11/16/2010 10:15 PM, swapnil wrote:
On Nov 17, 10:26 am, justin wrote:
Hi all,
I am calling a program written in C inside Python using ctypes,
and it seems that sometimes the program in C crashes while it's being
used in Python.
Even under the circumstances, I want to get the Python program
On 11/16/2010 10:24 PM, swapnil wrote:
On Nov 17, 3:30 am, laspi wrote:
There has been little or no activity at all in this project in the
last months, and the last comments on their mailing list seem to
conrfim that it's future is uncertain.
It's also very strange the lack of updates, news or
On Tue, Nov 16, 2010 at 9:26 PM, justin wrote:
> Hi all,
>
> I am calling a program written in C inside Python using ctypes,
> and it seems that sometimes the program in C crashes while it's being
> used in Python.
> Even under the circumstances, I want to get the Python program going
> by handlin
Thanks, Ned! That really helps to explain what is going on. Now, just
a couple more questions and I think I will know all I need to know.
First, I *still* don't quite understand why this happens with my 2.6.6
interpreter but not my 2.6.1, and why another of the respondents to
this thread (Chris) c
On Nov 17, 3:30 am, laspi wrote:
> There has been little or no activity at all in this project in the
> last months, and the last comments on their mailing list seem to
> conrfim that it's future is uncertain.
> It's also very strange the lack of updates, news or discussions,
> specially consideri
On Nov 17, 10:26 am, justin wrote:
> Hi all,
>
> I am calling a program written in C inside Python using ctypes,
> and it seems that sometimes the program in C crashes while it's being
> used in Python.
> Even under the circumstances, I want to get the Python program going
> by handling the segmen
On Tue, Nov 16, 2010 at 9:37 AM, Tim Arnold wrote:
> "Tim Harig" wrote in message
> news:ibs8h9$jm...@speranza.aioe.org...
> > On 2010-11-15, Tim Arnold wrote:
> >> On Nov 15, 10:41 am, Tim Harig wrote:
> >>> On 2010-11-15, Tim Arnold wrote:
> >>>
> >>> > How can I enable the server process t
Hi all,
I am calling a program written in C inside Python using ctypes,
and it seems that sometimes the program in C crashes while it's being
used in Python.
Even under the circumstances, I want to get the Python program going
by handling the segmentation fault.
I've already searched the Internet
On Nov 17, 9:34 am, Alexander Kapps wrote:
> >>> ur"Scheißt\nderBär\nim Wald?"
Nicht ohne eine Genehmigung von der Umwelt Erhaltung Abteilung.
--
http://mail.python.org/mailman/listinfo/python-list
"Tim Harig" wrote in message
news:ibs8h9$jm...@speranza.aioe.org...
> On 2010-11-15, Tim Arnold wrote:
>> On Nov 15, 10:41 am, Tim Harig wrote:
>>> On 2010-11-15, Tim Arnold wrote:
>>>
>>> > How can I enable the server process to write into the client's
>>> > directories?
>>> > If I change the
libpcap
On Wed, Nov 17, 2010 at 4:57 AM, MRAB wrote:
> On 16/11/2010 20:38, Hans wrote:
>
>> Hi,
>>
>> Maybe it's a very simple question. I'm trying to write a dhcpclient
>> code with python. The dhcpclient does not have ip address at the very
>> beginning, it sends out dhcpdiscover and then ser
Hi James,
Thanks for the pointer to psutil. I actually did look around on
python.org before coding this up to see if there was such a package
available but there is not, at least not where I'm looking -- on the
other hand, I can't find my car keys most of the time. I would really
like to restrict
In article
<55f26d5c-aba9-4892-9e2c-1caa9988e...@v23g2000vbi.googlegroups.com>,
Roger Davis wrote:
> I have encountered a strange problem with some code I am writing to
> search the system process list for certain running processes. I am
> using subprocess.Popen() to call '/bin/ps -e'. When I sa
On Nov 16, 12:57 pm, MRAB wrote:
> On 16/11/2010 20:38, Hans wrote:
>
> > Hi,
>
> > Maybe it's a very simple question. I'm trying to write a dhcpclient
> > code with python. The dhcpclient does not have ip address at the very
> > beginning, it sends out dhcpdiscover and then server sends back
> >
Thanks, Chris, you're at least on the right track. I did upgrade from
python.org and the python in my shell PATH is /Library/Frameworks/
Python.framework/Versions/2.6/bin/python:
% python
Python 2.6.6 (r266:84374, Aug 31 2010, 11:00:51)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
/usr/bin/pytho
On Tue, Nov 16, 2010 at 6:33 PM, Roger Davis wrote:
> Hi all,
>
> I have encountered a strange problem with some code I am writing to
> search the system process list for certain running processes. I am
> using subprocess.Popen() to call '/bin/ps -e'. When I save my code to
> the file pid.py (whos
On Wed, Nov 17, 2010 at 12:33 PM, Roger Davis wrote:
> Hi all,
>
> I have encountered a strange problem with some code I am writing to
> search the system process list for certain running processes. I am
> using subprocess.Popen() to call '/bin/ps -e'. When I save my code to
> the file pid.py (who
Hi all,
I have encountered a strange problem with some code I am writing to
search the system process list for certain running processes. I am
using subprocess.Popen() to call '/bin/ps -e'. When I save my code to
the file pid.py (whose first line is #!/usr/bin/python) and run it
with the command
On 17/11/2010 01:37, Brett Bowman wrote:
I'm spawning a subprocess to fix some formating errors with a library of
PDFs with pdftk:
try:
sp = subprocess.Popen('pdftk.exe "%s" output %s' % (pdfFile,
outputFile))
sp.wait()
del sp
except Exception, e:
ret
I'm spawning a subprocess to fix some formating errors with a library of
PDFs with pdftk:
try:
sp = subprocess.Popen('pdftk.exe "%s" output %s' % (pdfFile,
outputFile))
sp.wait()
del sp
except Exception, e:
return "Unable to open file: %s with error: %s" % (p
On 11/15/2010 02:04 AM, Martin Caum wrote:
> I am attempting to open a window on mouse activity which works, but
> the window fails to stay open.
> I set it to terminate when the escape key is pressed even when the
> program is not currently selected. This works fine. Originally I had
> it create t
Martin Caum writes:
> I am attempting to open a window on mouse activity which works, but
> the window fails to stay open.
> I set it to terminate when the escape key is pressed even when the
> program is not currently selected. This works fine. Originally I had
> it create the window only with a
On Tue, 16 Nov 2010, Neal Becker wrote:
> I want to have subparsers, but I also want to be able to say:
>
> myprogram --version
> and get the version #
>
> ---
[...]
AFAIK, it is not possible ATM to have optional subparsers with argparse:
http://code.google.com/p/argpar
On Nov 16, 1:52 pm, Ian wrote:
> On Nov 16, 2:08 pm, fuglyducky wrote:
>
> > db_connect = sqlite3.connect('test.db')
> > cursor = db_connect.cursor()
>
> > print(cursor.lastrowid)
>
> At this point you haven't executed a query yet, so there is no
> meaningful value that cursor.lastrowid can take.
I'm not a contributor to the U-S project, but I have been monitoring
alternative python implementations' progress some, and seem to be adding
something to pypy all of a sudden.
I think unladen swallow has produced performance improvements, and they are
likely to be merged into cpython 3.3.
Howeve
On Nov 14, 11:30 pm, alex23 wrote:
> On Nov 15, 4:39 pm, Dmitry Groshev wrote:
>
> > if x in range(a, b): #wrong!
>
> Only in Python 3.x, it's perfectly valid in Python 2.x. To achieve the
> same in Python 3.x, try:
>
> if x in list(range(a, b,)): # BUT SEE MY COMMENT BELOW
>
> > it feels
There has been little or no activity at all in this project in the
last months, and the last comments on their mailing list seem to
conrfim that it's future is uncertain.
It's also very strange the lack of updates, news or discussions,
specially considering that the merging plan has been approved.
On 16.11.2010 22:56, Boštjan Mejak wrote:
Hello,
how does one write a raw unicode docstring? If I have backslashes in
the docstring, I must tuck an 'r' in front of it, like this:
r"""This is a raw docstring."""
If I have foreign letters in the docstring, I must tuck a 'u' in front
of it, like t
On 11/16/2010 4:56 PM, Boštjan Mejak wrote:
Hello,
how does one write a raw unicode docstring? If I have backslashes in
the docstring, I must tuck an 'r' in front of it, like this:
r"""This is a raw docstring."""
You only need (and want that) if you want '\' to be taken literally. And
even if
On 11/16/10 3:56 PM, Boštjan Mejak wrote:
Hello,
how does one write a raw unicode docstring? If I have backslashes in
the docstring, I must tuck an 'r' in front of it, like this:
r"""This is a raw docstring."""
If I have foreign letters in the docstring, I must tuck a 'u' in front
of it, like t
On 16/11/2010 21:56, Boštjan Mejak wrote:
Hello,
how does one write a raw unicode docstring? If I have backslashes in
the docstring, I must tuck an 'r' in front of it, like this:
r"""This is a raw docstring."""
If I have foreign letters in the docstring, I must tuck a 'u' in front
of it, like t
[overquoting follows to prove my point]
Someone who claims to care as much as you do about Usenet ought to have
better quoting habits. You should be ashamed of yourself.
In article <4ce0f788$0$30018$c3e8da3$76a7c...@news.astraweb.com>,
John Doe wrote:
>alex23 wrote:
>
>> John Doe wrote:
>
>
Also try Pyglet, in combination of PyOpenGL.
Cheers,
Xav
On 17 November 2010 04:36, Marc-Andre Belzile <
marc-andre.belz...@autodesk.com> wrote:
> Hi list,
>
>
>
> could someone recommend a good python ogl package (open source is
> preferred) ? I found these ones so far:
>
>
>
> http://pyopengl
Hello,
how does one write a raw unicode docstring? If I have backslashes in
the docstring, I must tuck an 'r' in front of it, like this:
r"""This is a raw docstring."""
If I have foreign letters in the docstring, I must tuck a 'u' in front
of it, like this:
u"""This is a Unicode docstring."""
Wh
On Nov 16, 2:08 pm, fuglyducky wrote:
> db_connect = sqlite3.connect('test.db')
> cursor = db_connect.cursor()
>
> print(cursor.lastrowid)
At this point you haven't executed a query yet, so there is no
meaningful value that cursor.lastrowid can take.
> # Choose random index from DB - need to und
It helps to try to solve a real (to you) problem, that way you discover
what you don't know. If your code ends up nested 3 levels or your
methods are more than 10 lines, ask for help.
-Original Message-
From: python-list-bounces+frsells=adventistcare@python.org
[mailto:python-list-bou
On Tue, 16 Nov 2010 13:08:15 -0800, fuglyducky wrote:
> On Nov 16, 12:54 pm, Ian wrote:
>> On Nov 16, 1:00 pm, fuglyducky wrote:
>>
>> > Before I added the second table I could simply run
>> > 'print(cursor.lastrowid)' and it would give me the id number.
>> > However, with two tables I am unable
On Nov 16, 12:54 pm, Ian wrote:
> On Nov 16, 1:00 pm, fuglyducky wrote:
>
> > Before I added the second table I could simply run
> > 'print(cursor.lastrowid)' and it would give me the id number. However,
> > with two tables I am unable to do this.
>
> It would help if you would show the code wher
Hi list,
could someone recommend a good python ogl package (open source is preferred) ?
I found these ones so far:
http://pyopengl.sourceforge.net/
http://wiki.wxpython.org/wxOGL
thanks
-mab
--
http://mail.python.org/mailman/listinfo/python-list
[Portuguese talking, excuse me guys]
Pedro, vocês podem dar um olhada no bug tracking, e estudar os códigos pra
encontrar soluções.
2010/11/16 pedro igor sampaio avelino
> Hello, my name Pedro Igor, I am a student and develop applications in
> python for 1 year. I enrolled in the group to contri
Hi,
I'm trying to write a COM client to a COM server which controls a power
meter. The COM server fires events that should be handled by the
client. The docs state that I have to supply a class which implements
the IFM2DeviceEvents interface. I need some instructions on how to
translate the VB sam
On 16/11/2010 20:38, Hans wrote:
Hi,
Maybe it's a very simple question. I'm trying to write a dhcpclient
code with python. The dhcpclient does not have ip address at the very
beginning, it sends out dhcpdiscover and then server sends back
dhcpoffer. the dhcpoffer will use assigned ip as destinat
On Nov 16, 1:00 pm, fuglyducky wrote:
> Before I added the second table I could simply run
> 'print(cursor.lastrowid)' and it would give me the id number. However,
> with two tables I am unable to do this.
It would help if you would show the code where you're trying to do
this. Without your actu
Hello, my name Pedro Igor, I am a student and develop applications in
python for 1 year. I enrolled in the group to contribute in developing
this wonderful language that helps me both in day-to-day, but I'm
going through some difficulties because they do not know where to
start, can someone please
Hi,
Maybe it's a very simple question. I'm trying to write a dhcpclient
code with python. The dhcpclient does not have ip address at the very
beginning, it sends out dhcpdiscover and then server sends back
dhcpoffer. the dhcpoffer will use assigned ip as destination ip, but
that ip is not client's
Hi,
My post from Google groups doesn't sem to get through. SO here once more
posted from gmane.
Wanted to write a first simple example with pybluez and offer
a serial connection service with a given name.
What I tried (being inspired by
http://people.csail.mit.edu/albert/bluez-intro/x290.html
)
I am fairly new to Python (no development experience) and brand new to
using sqlite through Python. With that said, I created a database with
two tables. The first has about 30,000 rows of static data. The second
has 9 rows of static data.
Before I added the second table I could simply run
'print(
On 11/16/2010 2:22 PM, Lou Pecora wrote:
> I'll jump in and recommend the book "Python in a Nutshell" by Martelli.
> It may be a little dated now, but it covers many Python topics in good
> detail without becoming a bloated reference. Nicely written. It's still
> the first book I reach for aft
I want to have subparsers, but I also want to be able to say:
myprogram --version
and get the version #
---
import argparse
def stop():
pass
parser = argparse.ArgumentParser()
parser.add_argument ('--version', action='store_true')
subparsers = parser.add_subparsers
In article ,
Dennis Lee Bieber wrote:
> On Sun, 14 Nov 2010 16:32:24 -0600, Jorge Biquez
> declaimed the following in gmane.comp.python.general:
>
> > I was wondering if you can share what was the strategy you followed
> > to master Python (Yes I know I have to work hard study and practice a
On 16/11/2010 06:52, Ton wrote:
On Nov 16, 1:47 am, MRAB wrote:
On 15/11/2010 11:03, Ton wrote:
On Nov 14, 11:55 pm, MRABwrote:
On 14/11/2010 14:48, ton ph wrote:>Hi python geeks,
I have problem which i have been trying to find out for the past
some days, i have a device whi
On Nov 16, 9:23 am, Mark Summerfield wrote:
> I think it might be worth mentioning in What's New:
FWIW, I'll be updating the What's New document for the Beta.
Raymond
--
http://mail.python.org/mailman/listinfo/python-list
On Nov 15, 2:39 am, Dmitry Groshev wrote:
> Here are some proposals. They are quite useful at my opinion and I'm
> interested for suggestions. It's all about some common patterns.
> First of all: how many times do you write something like
> t = foo()
> t = t if pred(t) else default_value
Hi Georg,
On Tue, 12 Oct 2010 14:40:52 +0200
Georg Brandl wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On behalf of the Python development team, I'm happy to announce the
> third and final alpha preview release of Python 3.2.
[snip]
I built & ran Py3.2a4's tests & they were fine
Hi everybody !
First time I write to this mailing list :)
I started writing in python last week, that's probably why I can't
understand the following problem...
I create a list called web_site_list.
This list contain dictionaries called web_site.
And some values in this dictionaries are list
Hi,
Wanted to write a first simple example with pybluez and offer
a serial connection service with a given name.
What I tried (being inspired by
http://people.csail.mit.edu/albert/bluez-intro/x290.html
) is:
server_sock=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
port = bluetooth.PORT_ANY # o
On 11/16/2010 3:42 AM, Steven D'Aprano wrote:
On Mon, 15 Nov 2010 22:40:00 -0700, Ian Kelly wrote:
On 11/15/2010 10:26 PM, Steven D'Aprano wrote:
t = foo()+bar()+baz() if pred(it) else baz()-foo()-bar()
What does "it" mean here?
"it" would mean the result of the expression foo()+bar()+baz()
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On behalf of the Python development team, I'm happy to announce the
fourth and (this time really) final alpha preview release of Python 3.2.
Python 3.2 is a continuation of the efforts to improve and stabilize the
Python 3.x line. Since the final rel
On Nov 15, 10:06 pm, John Nagle wrote:
> On 11/14/2010 11:08 AM, Artur Siekielski wrote:
>
> > Hi.
> > I'm using CPython 2.7 and Linux. In order to make parallel
> > computations on a large list of objects I want to use multiple
> > processes (by using multiprocessing module). In the first step I
On Mon, 15 Nov 2010 22:40:00 -0700, Ian Kelly wrote:
> On 11/15/2010 10:26 PM, Steven D'Aprano wrote:
>> t = foo()+bar()+baz() if pred(it) else baz()-foo()-bar()
>>
>> What does "it" mean here?
>
> "it" would mean the result of the expression foo()+bar()+baz(). What
> else could it mean?
It cou
m...@distorted.org.uk (Mark Wooding) writes:
>> So even if the globals() dictionary is custom, its __setitem__ method is
>> *not* called.
>
> Fascinating. Thank you.
In case it's not obvious, that is because CPython assumes the type for
many of its internal or semi-internal structures, and calls
61 matches
Mail list logo