none <""atavory\"@(none)"> writes:
> IIRC, I once saw an explanation how Python doesn't have
> "variables" in the sense that, say, C does, and instead has bindings
> from names to objects. Does anyone have a link?
"Variable" is an abstract concept, and it's a slightly different
concept for
Hello everybody,
I've banged my ahead around for a while trying to figure out why
multiple instances of a class share the same instance variable. I've
stripped down my code to the following, which reproduces my problem.
class Test(object):
def __init__(self, v=[]):
self.values =
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> Hello everybody,
>
> I've banged my ahead around for a while trying to figure out why
> multiple instances of a class share the same instance variable. I've
> stripped down my code to the following, which reproduces my problem.
>
> class Test(
[EMAIL PROTECTED] wrote:
> Hello everybody,
>
> I've banged my ahead around for a while trying to figure out why
> multiple instances of a class share the same instance variable. I've
> stripped down my code to the following, which reproduces my problem.
>
This is a *feature* of Python tha
On Nov 28, 3:31 am, Paul Rudin <[EMAIL PROTECTED]> wrote:
> You have to understand that the default value for v - an empty list -
> is made at compile time - and it's the *same* list every time it's
> used i.e. if you don't pass in a value for v when you make new
> instances of your class.
*smack*
Carl K wrote:
> jay graves wrote:
>> On Sep 21, 2:43 am, Tim Golden <[EMAIL PROTECTED]> wrote:
>>> Carl K wrote:
It seems there are 2 odbc modules - pyOdbc and mxOdbc - anyone know the
difference?
>>> In short, pyodbc is open source; mxOdbc requires a commercial license.
>>> pyodbc is a
On Nov 28, 7:19 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Hello everybody,
>
> I've banged my ahead around for a while trying to figure out why
> multiple instances of a class share the same instance variable. I've
> stripped down my code to the following, which reproduces my proble
Paul Rudin <[EMAIL PROTECTED]> wrote:
> You have to understand that the default value for v - an empty list -
> is made at compile time
Not at compile time: the default value is created at runtime when the def
statement is executed.
--
http://mail.python.org/mailman/listinfo/python-list
Hi all,
How to debug Python program with GUI, especially Tkinter? My debug
environment is PythonWin.
For example, when I single step in the program, the step will go to
mainloop() and always loop there. How can I know where the program is
processed?
Any suggestions are welcome!
Best regards,
Dav
Your server program is using readLine(), which will block until a
newline is received. The server code does not write a newline, so it is
waiting at recv() for data from the server, and the server is still
waiting for a newline. If you change the client to do the following, it
should work:
s
[Aahz]
> I'm sure that some people would be willing to serve as middleware...
I would *love* to have one of these for my kids, if anyone here would be
prepared to forward one to the UK for me. I can pay you the postage by
PalPal, Amazon voucher, whatever suits.
The XO reminds me of the computer
Davy wrote:
> Hi all,
>
> How to debug Python program with GUI, especially Tkinter? My debug
> environment is PythonWin.
>
> For example, when I single step in the program, the step will go to
> mainloop() and always loop there. How can I know where the program is
> processed?
You can't - the m
Holy Shmoly, Ruby 1.9 smokes Python away!
http://antoniocangiano.com/2007/11/28/holy-shmoly-ruby-19-smokes-python-away/
The post is less flaming than the title, fortunately. :-)
--
Nicola Larosa - http://www.tekNico.net/
If you have multiple CPUs and you want to use them all, fork off as
many
pr
Hi,
I want to write a small tcp traceroute script. I works, but how
can I get the IP of the hop that send 'no route to host'?
Result:
python tmp/tcptraceroute.py a.b.c.d 80
ttl=01: (113, 'No route to host')
ttl=02: (113, 'No route to host')
ttl=03: (113, 'No route to host')
ttl=04: timed out
ttl=
Here's some proof of concept code I wrote a while back for this very
purpose. What I do is use compiler.parse to take a code string and
turn it into an abstract syntax tree. Then, using a custom visitor
object that raises an exception if it comes across something it
doesn't like, I use compiler.a
Thomas Guettler wrote:
> If you look at this code, you see there are two kind of ImportErrors:
>
> 1. app_name has no attribute or file managment.py: That's OK.
> 2. managment.py exists, but raises an ImportError: That's not OK: reraise
>
> # Import the 'management' module within each in
GLOBAL INSTITUTE OF BIOTECHNOLOGY
( A unit of SVS Education Society, Regn No 1640 of 2005, Govt.A.P.)
3-6-276/2, Sai Triveni Chambers, Above Mahesh Bank, Hyderabad, A.P.
ABOUT OURSELVES
Global Institute of Biotechnology in its short span of existence for a
period of Three years has emerged as a p
GLOBAL INSTITUTE OF BIOTECHNOLOGY
( A unit of SVS Education Society, Regn No 1640 of 2005, Govt.A.P.)
3-6-276/2, Sai Triveni Chambers, Above Mahesh Bank, Hyderabad, A.P.
ABOUT OURSELVES
Global Institute of Biotechnology in its short span of existence for a
period of Three years has emerged as a p
* Martin Landa <[EMAIL PROTECTED]>, 2007-11-27:
> I have unicode string (or better say latin2 encoding) containing
> non-ascii characters, e.g.
>
> s = "Ukázka_monosti_vyuití_programu_OpenJUMP_v_SOA"
>
> I would like to convert this string to plain ascii (using some lookup
> table for latin2)
>
>
**EARN $1 PER MONTH**CHECK PROOF**
**BPM SOFTWARE**
**INTERNET SOFTWARE**
**SOFTWARE DEVELOPMENT**
**PROCESS MODELLING SOFTWARE**
http://regantame.blogspot.com/
--
http://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano a écrit :
> On Tue, 27 Nov 2007 10:11:48 +0100, Bruno Desthuilliers wrote:
>
>> Fine. Now since Python let you define your own callable types and your
>> own descriptors, you can as well have an attribute that behave just like
>> a method without being an instance of any of the met
Thanks for the thoughts - much appreciated! The threaded super-goat
was indeed the offender. A very aggressive QA tester got us enough of
a pattern to identify the offending module: pyOpenSSL. After looking
at it closely, we found there are problems with its thread handling.
In particular, the G
On Nov 27, 5:31 pm, MonkeeSage <[EMAIL PROTECTED]> wrote:
> Of course. But then it really depends on the teaching methodology,
> doesn't it? There is no reason (well, barring the restraints of the
> curriculum vitea), that one should learn topics so complex as to
> require "off-putting" the *real*
On Nov 28, 1:09 am, Steven D'Aprano
<[EMAIL PROTECTED]> wrote:
> On Tue, 27 Nov 2007 10:21:36 -0800, hdante wrote:
> > Python variables are pointers and that's it.
>
> How do I increment a Python variable so that it points to the next
> address, like I can do with pointers in C, Pascal, and other l
On Nov 27, 5:08 pm, John Machin <[EMAIL PROTECTED]> wrote:
> On Nov 28, 8:45 am, [EMAIL PROTECTED] wrote:
>
>
>
>
>
>
>
> > On Nov 27, 3:35 pm, Martin Landa <[EMAIL PROTECTED]> wrote:
>
> > > Hi all,
>
> > > sorry for a newbie question. I have unicode string (or better say
> > > latin2 encoding) co
Paul Rudin wrote:
> "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> A common paradigm to get round this - assuming you want a different
> empty list each time - is something like:
>
> def __init__(self, v = None):
> self.values = v if v else []
>
> (or maybe test explicitly for None, but y
Istvan Albert schrieb:
> It will be awesome if mod_wsgi can run CGI without invoking python on
> each access.
For SCGI there is something like this: cgi2scgi: it is small executable written
in C,
which connects to a running SCGI server.
Executing this small binary on every request is no big over
Hey i was wondering if any one would know if there was a way to have
python randomly read form a file or would you ahve to know the byte
postion and somehow randomize splicing the file so the sentence you
want show's up.
i.e have a file with a lot of tips and useless facts and then have
python ran
I have included a small script the reproduces the error I am having in
larger script.
The line 'hkey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,name)'
seems
to be causing the error but im not sure why.
- script
import _winreg
import string
def reproduce_erro
On Nov 28, 1:42 pm, Neil Cerutti <[EMAIL PROTECTED]> wrote:
> On 2007-11-28, hdante <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Nov 28, 1:09 am, Steven D'Aprano
> ><[EMAIL PROTECTED]> wrote:
> >> On Tue, 27 Nov 2007 10:21:36 -0800, hdante wrote:
> >> > Python variables are pointers and that's it.
>
> >
On 2007-11-28, hdante <[EMAIL PROTECTED]> wrote:
> On Nov 28, 1:09 am, Steven D'Aprano
><[EMAIL PROTECTED]> wrote:
>> On Tue, 27 Nov 2007 10:21:36 -0800, hdante wrote:
>> > Python variables are pointers and that's it.
>>
>> How do I increment a Python variable so that it points to the
>> next addre
On 2007-11-28, hdante <[EMAIL PROTECTED]> wrote:
> On Nov 28, 1:42 pm, Neil Cerutti <[EMAIL PROTECTED]> wrote:
>> On 2007-11-28, hdante <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> > On Nov 28, 1:09 am, Steven D'Aprano
>> ><[EMAIL PROTECTED]> wrote:
>> >> On Tue, 27 Nov 2007 10:21:36 -0800, hdante wrote:
Joseph king wrote:
> Hey i was wondering if any one would know if there was a way to have
> python randomly read form a file or would you ahve to know the byte
> postion and somehow randomize splicing the file so the sentence you
> want show's up.
>
> i.e have a file with a lot of tips and useles
On Nov 28, 2007 9:51 AM, hdante <[EMAIL PROTECTED]> wrote:
> On Nov 28, 1:42 pm, Neil Cerutti <[EMAIL PROTECTED]> wrote:
> > On 2007-11-28, hdante <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> > > On Nov 28, 1:09 am, Steven D'Aprano
> > ><[EMAIL PROTECTED]> wrote:
> > >> On Tue, 27 Nov 2007 10:21:36 -08
On 2007-11-28, Joseph king <[EMAIL PROTECTED]> wrote:
> Hey i was wondering if any one would know if there was a way to
> have python randomly read form a file or would you ahve to know
> the byte postion and somehow randomize splicing the file so the
> sentence you want show's up.
>
> i.e have a f
On Nov 28, 2007 11:04 AM, black_13 <[EMAIL PROTECTED]> wrote:
> I have included a small script the reproduces the error I am having in
> larger script. The line 'hkey =
> _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,name)'
> seems to be causing the error but im not sure why.
...
> WindowsError: [Er
On Nov 28, 2:06 pm, Neil Cerutti <[EMAIL PROTECTED]> wrote:
>
> > That's right. Languages may have arbitrary sets of operations
> > defined for their variables. There's nothing wrong with that.
>
> No, arbitrary operations would be useless.
>
1) You may convince a big company to add you newly dev
On Nov 28, 9:00 am, "Joseph king" <[EMAIL PROTECTED]> wrote:
> Hey i was wondering if any one would know if there was a way to have
> python randomly read form a file or would you ahve to know the byte
> postion and somehow randomize splicing the file so the sentence you
> want show's up.
>
> i.e h
On Nov 28, 10:04 am, black_13 <[EMAIL PROTECTED]> wrote:
> I have included a small script the reproduces the error I am having in
> larger script.
> The line 'hkey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,name)'
> seems
> to be causing the error but im not sure why.
> - scri
On 2007-11-28, Neil Cerutti <[EMAIL PROTECTED]> wrote:
> import textwrap
> import random
> import os
>
> print "Sigswap v0.4"
> [...]
Yikes!
That program was in dire need of Pythonification. It must have
been written early in my Pythonology.
--
Neil Cerutti
--
http://mail.python.org/mailman/li
Hello
I've managed to build python2.4 and python2.5 in windows with MSVC++
7.1 fine following the instructions in the PCbuild directory. However
now I am wondering how to create the MSI from this[1], but can't find
any instructions. All I'm looking for is the equivalent of "make
install" (or "ma
On Nov 28, 2:12 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote:
>
> Right. Python variables are pointers, except for all the ways that
> they are different. By the same criteria, they are also puppies. Give
> it a rest.
I'm sorry if your notion of pointer is incorrect. A pointer (or, more
formally,
On Nov 28, 3:04 pm, Mel <[EMAIL PROTECTED]> wrote:
> Paul Rudin wrote:
> > "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> > A common paradigm to get round this - assuming you want a different
> > empty list each time - is something like:
>
> > def __init__(self, v = None):
> > self.values =
On Nov 28, 2007 10:57 AM, hdante <[EMAIL PROTECTED]> wrote:
> On Nov 28, 2:12 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote:
> >
> > Right. Python variables are pointers, except for all the ways that
> > they are different. By the same criteria, they are also puppies. Give
> > it a rest.
>
> I'm so
I need to parse the following string:
$$\pmatrix{{\it x_2}\cr 0\cr 1\cr }=\pmatrix{\left({{{\it m_2}\,s^2
}\over{k}}+1\right)\,{\it x_1}-{{F}\over{k}}\cr -{{{\it m_2}\,s^2\,F
}\over{k}}-F+\left({\it m_2}\,s^2\,\left({{{\it m_2}\,s^2}\over{k}}+1
\right)+{\it m_2}\,s^2\right)\,{\it x_1}\cr 1\cr }
Floris Bruynooghe wrote:
> It would be great if someone knows how Python builds it's MSI.
The Tools/ directory contains a script in Tools/msi/msi.py. Martin von
Löwis is using the script to generate the official MSI bundles. You need
to run it from a development shell. Good luck!
Christian
--
h
> The trick is that there are extra curly braces inside the \pmatrix{ }
> strings and I don't know how to write a regexp that would count the
> number of open and close curly braces and make sure they match, so
> that it can find the correct ending curly brace.
This criterion is pretty much a deal
On Wed, Nov 28, 2007 at 11:23:42AM -0600, Chris Mellon wrote regarding Re: How
to Teach Python "Variables":
>
> On Nov 28, 2007 10:57 AM, hdante <[EMAIL PROTECTED]> wrote:
> > On Nov 28, 2:12 pm, "Chris Mellon" <[EMAIL PROTECTED]> wrote:
> > >
> > > Right. Python variables are pointers, except f
I made this script for fun. you need to have Nmap installed on your
linux computer and it will find all the computers on the network and
then run Nmap on it.
Hope you enjoy!
import os
fn = 'i.result'
ip = '192.168.1.1-255'
ip1 = ip[:3]
ips = []
os.system("nmap -sP 192.168.1.1-255 > "+fn)
f = ope
Hi;
I am trying to find words in a document that are identical to any word in a
vocabulary list, to replace that word with special markup. Let's say the
word is "dharma". I don't want to replace the first few letters of, say
"dharmawuhirfuhi". Also, to make matters more difficult, if the word
"adha
On Nov 20, 4:09 pm, Jens <[EMAIL PROTECTED]> wrote:
>
> 1) Should I put my unittests in a subdirectory? Does the subdirectory
> have to be a package?
As others have suggested, this is a good way to organise your tests.
To avoid problems with the import path, look at nosetests [1]. This
allows you
On Nov 27, 10:05 pm, "barcaroller" <[EMAIL PROTECTED]> wrote:
> Can someone kindly recommend some good books on the following:
>
> Python for beginners
> Python for advanced users
>
> Is there a bible like Larry Wall's Programming Perl or Bjarne Stroustrup's
> The C++ Programming Language?
Since I don't have VS2003, I'm trying to build cjson with MingW and Cygwin
but I'm getting lots of errors like these:
build\temp.win32-2.5\Release\cjson.o(.text+0x8e):cjson.c: undefined
reference to
`_imp___Py_NoneStruct'
build\temp.win32-2.5\Release\cjson.o(.text+0x95):cjson.c: undefined
refe
I've purchased a couple of books on Python and I keep going back to Python
in a Nutshell. It's about the only printed text I keep on my desk all the
time. It has a nice introduction to the language and includes the
specification, too.
If you're familiar with programming,
http://diveintopython.org
On Nov 28, 11:32 am, "Ryan Krauss" <[EMAIL PROTECTED]> wrote:
> I need to parse the following string:
>
> $$\pmatrix{{\it x_2}\cr 0\cr 1\cr }=\pmatrix{\left({{{\it m_2}\,s^2
> }\over{k}}+1\right)\,{\it x_1}-{{F}\over{k}}\cr -{{{\it m_2}\,s^2\,F
> }\over{k}}-F+\left({\it m_2}\,s^2\,\left({{{\it m_
hi, how can I, control mouse position and clicking from python?
I want to interact with a flash application inside firefox. thanks.
ps: I am not using windows.
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> On Nov 28, 1:06 pm, SMALLp <[EMAIL PROTECTED]> wrote:
>> Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed
>> IDLE, and i installed package python-wxgtkX. I start IDLE and when i
>> want co compile my aplication all windows close. Also when i vrite
>> s
Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed
IDLE, and i installed package python-wxgtkX. I start IDLE and when i
want co compile my aplication all windows close. Also when i vrite
smoethin lik thile in IDLE:
import wx
app = wx.App()
wx.Frmae(none, -1)
same thing, Pleas
On Nov 28, 1:06 pm, SMALLp <[EMAIL PROTECTED]> wrote:
> Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed
> IDLE, and i installed package python-wxgtkX. I start IDLE and when i
> want co compile my aplication all windows close. Also when i vrite
> smoethin lik thile in IDLE:
>
>
On Nov 28, 1:29 pm, Glich <[EMAIL PROTECTED]> wrote:
> hi, how can I, control mouse position and clicking from python?
>
> I want to interact with a flash application inside firefox. thanks.
>
> ps: I am not using windows.
Ooof, I was about to suggest using pywinauto, because I was able to
interac
Paul McGuire wrote:
> On Nov 28, 1:29 pm, Glich <[EMAIL PROTECTED]> wrote:
>
>> hi, how can I, control mouse position and clicking from python?
>>
>> I want to interact with a flash application inside firefox. thanks.
>>
>> ps: I am not using windows.
>>
>
> Ooof, I was about to suggest usi
Dana Mon, 26 Nov 2007 08:50:23 -0800 (PST),
[EMAIL PROTECTED] <[EMAIL PROTECTED]> kaze:
> Sorry I didn't reply sooner. If you're creating a service based on a
> Python file, check out the following links in addition to the book
> Wolfgang mentioned:
>
> http://agiletesting.blogspot.com/2005/09/run
Hi there,
I'm so new to python (coming from .net so excuse me for the stupid question)
and i'm tring to do a very simple thing,with bytes.
My problem is this:
i've a byte that naturally is composed from 2 nibbles hi&low, and two
chars.. like A nd B. What i wonna do is to write A to the High nib
On Nov 28, 1:23 pm, Paul McGuire <[EMAIL PROTECTED]> wrote:
> As Tim Grove points out, ...
s/Grove/Chase/
Sorry, Tim!
-- Paul
--
http://mail.python.org/mailman/listinfo/python-list
On Nov 28, 2007 2:07 PM, Gianmaria Iaculo - NVENTA
<[EMAIL PROTECTED]> wrote:
> Hi there,
> I'm so new to python (coming from .net so excuse me for the stupid question)
> and i'm tring to do a very simple thing,with bytes.
>
> My problem is this:
>
> i've a byte that naturally is composed from 2 ni
> I'm really confused on how t do it, maybe cause python is
> type-less (dynamic typed)
Being duck-typed doesn't really have anything to do with it.
Python supports logical shifting and combining
> i've a byte that naturally is composed from 2 nibbles hi&low,
> and two chars.. like A nd B. What
On Nov 28, 1:59 pm, Nikola Skoric <[EMAIL PROTECTED]> wrote:
> Dana Mon, 26 Nov 2007 08:50:23 -0800 (PST),
> [EMAIL PROTECTED] <[EMAIL PROTECTED]> kaze:
>
> > Sorry I didn't reply sooner. If you're creating a service based on a
> > Python file, check out the following links in addition to the book
On Nov 28, 2007 2:27 PM, Chris Mellon <[EMAIL PROTECTED]> wrote:
> On Nov 28, 2007 2:07 PM, Gianmaria Iaculo - NVENTA
> <[EMAIL PROTECTED]> wrote:
> > Hi there,
> > I'm so new to python (coming from .net so excuse me for the stupid question)
> > and i'm tring to do a very simple thing,with bytes.
>
Paul McGuire wrote:
> On Nov 28, 1:23 pm, Paul McGuire <[EMAIL PROTECTED]> wrote:
>> As Tim Grove points out, ...
>
> s/Grove/Chase/
>
> Sorry, Tim!
No problem...it's not like there aren't enough Tim's on the list
as it is. :)
-tkc
--
http://mail.python.org/mailman/listinfo/python-list
On Nov 29, 7:07 am, "Gianmaria Iaculo - NVENTA"
<[EMAIL PROTECTED]> wrote:
> Hi there,
> I'm so new to python (coming from .net so excuse me for the stupid question)
> and i'm tring to do a very simple thing,with bytes.
>
> My problem is this:
>
> i've a byte that naturally is composed from 2 nibbl
On 2007-11-28, Chris Mellon <[EMAIL PROTECTED]> wrote:
> On Nov 28, 2007 2:07 PM, Gianmaria Iaculo - NVENTA
><[EMAIL PROTECTED]> wrote:
>> Hi there,
>> I'm so new to python (coming from .net so excuse me for the stupid question)
>> and i'm tring to do a very simple thing,with bytes.
>>
>> My proble
On Wed, Nov 28, 2007 at 09:07:56PM +0100, Gianmaria Iaculo - NVENTA wrote
regarding Bit Operations:
>
> Hi there,
> I'm so new to python (coming from .net so excuse me for the stupid question)
> and i'm tring to do a very simple thing,with bytes.
>
> My problem is this:
>
> i've a byte that na
I'm using SCons to build all kinds of things, and part of our build
process involves creating a "release" version of our software. In the
case of Python, that means compiling the .py into a .pyc or .pyo.
Because I'm placing the compiled script into a different location from
the .py, I have to figu
> >>> 0xff & (((0xff & a) << 4) | (0xff & b))
> 150
>
> or, if you're sloppy,
>
> >>> (a << 4) | b
> 150
Slightly OT, maybe - why exactly is the second alternative 'sloppy?'
I believe you, because I had a problem once (in Java) with bytes not
having the value I expected unless I did the and-magi
On Nov 28, 5:26 pm, Christian Heimes <[EMAIL PROTECTED]> wrote:
> Floris Bruynooghe wrote:
> > It would be great if someone knows how Python builds it's MSI.
>
> The Tools/ directory contains a script in Tools/msi/msi.py. Martin von
> Löwis is using the script to generate the official MSI bundles.
Txs all,
i wont to respond to who asked why i needed it:
I'm using python on GSM modules and the informations i have to move goes
along GPRS/UMTS connections so it's beatiful for me to transfer more
informations with less space...
imagine i have to send this simple data
41.232323,12.345678
Hi Graham
Is this email still good?
Its been awhile since we spoke last on the tuning list. Are you still on
Yahoo messenger?
Also, what is your email address please. You told me to email you when I had
questions that seemed too basic for the tuning list. Thanks Graham. My
email is [EMAIL PROTEC
On Wed, Nov 28, 2007 at 10:05:40PM +0100, Gianmaria Iaculo - NVENTA wrote
regarding Re: Bit Operations:
>
> Txs all,
> i wont to respond to who asked why i needed it:
>
> I'm using python on GSM modules and the informations i have to move goes
> along GPRS/UMTS connections so it's beatiful for
Hi Folks,
I am looking for a network Graph Library with Python bindings (Iron or
C!).
Just need a simple relationship visualisation - seen a few via google
but many seem to be unmaintained.
Any suggestions?
Thanks,
Davy Mitchell
--
Davy Mitchell
Blog - http://daftspaniel.blogspot.com
Twitter -
On Nov 28, 2007 3:18 PM, J. Clifford Dyer <[EMAIL PROTECTED]> wrote:
> On Wed, Nov 28, 2007 at 10:05:40PM +0100, Gianmaria Iaculo - NVENTA wrote
> regarding Re: Bit Operations:
> >
> > Txs all,
> > i wont to respond to who asked why i needed it:
> >
> > I'm using python on GSM modules and the info
Glich wrote:
> hi, how can I, control mouse position and clicking from python?
>
> I want to interact with a flash application inside firefox.
> thanks.
>
> ps: I am not using windows.
On Mac, IIRC, you can't.
Regards,
Björn
--
BOFH excuse #394:
Jupiter is aligned with Mars.
--
http://ma
I have a twiki, with documentation on 200 "things". I'd like to
export the 200 pages, with their embedded graphs, to some static
version (word, pdf, ...) that I can give to a non-connected, reference
user community to "read" - i.e., no =navigation required beyond back
and forth to a table of conte
U are really nice guys... i'm really apreciating (sorry 4 my bad english)
Chriss is right this are coordinates and i'm treating as strings
naturally
I dont really have floating points on my module.. it run a 1.5 python
version from Telit.
So i dont have zLib too... just have 1.5 Mb of Ram an
>> >>> 0xff & (((0xff & a) << 4) | (0xff & b))
>> 150
>>
>> or, if you're sloppy,
>>
>> >>> (a << 4) | b
>> 150
>
> Slightly OT, maybe - why exactly is the second alternative 'sloppy?'
> I believe you, because I had a problem once (in Java) with bytes not
> having the value I expected unless I d
On Nov 29, 8:35 am, "Gianmaria Iaculo - NVENTA"
<[EMAIL PROTECTED]> wrote:
> U are really nice guys... i'm really apreciating (sorry 4 my bad english)
>
> Chriss is right this are coordinates and i'm treating as strings
> naturally
> I dont really have floating points on my module.. it run a 1.
In article
<[EMAIL PROTECTED]>,
[EMAIL PROTECTED] wrote:
> On Nov 27, 10:05 pm, "barcaroller" <[EMAIL PROTECTED]> wrote:
> > Can someone kindly recommend some good books on the following:
> >
> > Python for beginners
> > Python for advanced users
> >
> > Is there a bible like Larry Wall'
On Nov 29, 8:05 am, "Gianmaria Iaculo - NVENTA"
<[EMAIL PROTECTED]> wrote:
> Txs all,
> i wont to respond to who asked why i needed it:
>
> I'm using python on GSM modules and the informations i have to move goes
> along GPRS/UMTS connections so it's beatiful for me to transfer more
> informations
John can you make an example of this solution? You maen that a more compact
way is possible???
Firma Gianmaria Iaculo
"John Machin" <[EMAIL PROTECTED]> ha scritto nel messaggio
news:[EMAIL PROTECTED]
> On Nov 29, 8:05 am, "Gianmaria Iaculo - NVENTA"
> <[EMAIL PROTECTED]> wrote:
>> Txs all,
>> i
On Nov 27, 9:05 pm, "barcaroller" <[EMAIL PROTECTED]> wrote:
> Can someone kindly recommend some good books on the following:
>
> Python for beginners
> Python for advanced users
>
> Is there a bible like Larry Wall's Programming Perl or Bjarne Stroustrup's
> The C++ Programming Language?
On Nov 29, 9:20 am, "Gianmaria Iaculo - NVENTA"
<[EMAIL PROTECTED]> wrote:
> John can you make an example of this solution?
Which possible solution? (a) 32-bit floating point (b) 32-bit integer
(c) packed decimal
> You maen that a more compact
> way is possible???
More compact than what? If your
On Nov 28, 3:15 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Hi Folks,
>
> I am looking for a network Graph Library with Python bindings (Iron or
> C!).
>
> Just need a simple relationship visualisation - seen a few via google
> but many seem to be unmaintained.
>
I've used GraphViz before
SMALLp wrote:
> [EMAIL PROTECTED] wrote:
>> On Nov 28, 1:06 pm, SMALLp <[EMAIL PROTECTED]> wrote:
>>> Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed
>>> IDLE, and i installed package python-wxgtkX. I start IDLE and when i
>>> want co compile my aplication all windows close. Al
On Nov 28, 9:33 pm, Bjoern Schliessmann wrote:
snip
>
> On Mac, IIRC, you can't.
>
> Regards,
well, you can do it from Java, (the Robot class, as I recall), so you
should be able to do it in Jython, which is a Python implementation,
so
Tony
--
http://mail.python.org/mailman/listinfo/python
On Nov 28, 9:33 pm, Bjoern Schliessmann wrote:
snip
>
> On Mac, IIRC, you can't.
>
> Regards,
well, you can do it from Java, (the Robot class, as I recall), so you
should be able to do it in Jython, which is a Python implementation,
so
Tony
--
http://mail.python.org/mailman/listinfo/python
On Nov 29, 2:36 am, Thomas Guettler <[EMAIL PROTECTED]> wrote:
> Istvan Albert schrieb:
>
> > It will be awesome ifmod_wsgican run CGI without invoking python on
> > each access.
>
> For SCGI there is something like this: cgi2scgi: it is small executable
> written in C,
> which connects to a runni
"Chris Mellon" <[EMAIL PROTECTED]> writes:
> Whether you like it or not, the term "pointer" has a specific common
> meanings. They do not mean "any means by which you may reference a
> value". "variable" is certainly less clear and is used much more
> loosely, but in the specific context of compa
Interesting. Thanks Paul and Tim. This looks very promising.
Ryan
On Nov 28, 2007 1:23 PM, Paul McGuire <[EMAIL PROTECTED]> wrote:
> On Nov 28, 11:32 am, "Ryan Krauss" <[EMAIL PROTECTED]> wrote:
> > I need to parse the following string:
> >
> > $$\pmatrix{{\it x_2}\cr 0\cr 1\cr }=\pmatrix{\left
On Nov 28, 2007 1:23 PM, Paul McGuire <[EMAIL PROTECTED]> wrote:
> On Nov 28, 11:32 am, "Ryan Krauss" <[EMAIL PROTECTED]> wrote:
> > I need to parse the following string:
> >
> > $$\pmatrix{{\it x_2}\cr 0\cr 1\cr }=\pmatrix{\left({{{\it m_2}\,s^2
> > }\over{k}}+1\right)\,{\it x_1}-{{F}\over{k}}\cr
[EMAIL PROTECTED] wrote:
> http://cdnll.i.imagechef.com/ic/templimg2/Shaved%20Head.jpg
> Do u know how to make such images using PIL
using PIL, you can prepare a background image (the head), an overlay
layer (properly shaded flesh tones) and a mask (e.g. using ImageDraw and
a suitable font), an
On Nov 28, 2007 2:38 PM, jay graves <[EMAIL PROTECTED]> wrote:
> On Nov 28, 3:15 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> wrote:
> > Hi Folks,
> >
> > I am looking for a network Graph Library with Python bindings (Iron or
> > C!).
> >
> > Just need a simple relationship visualisation - seen a
1 - 100 of 120 matches
Mail list logo