srinivasan srinivas wrote:
> I would like to know how to pickle a bound method??
$ cat pickle_method.py
import copy_reg
import new
def make_instancemethod(inst, methodname):
return getattr(inst, methodname)
def pickle_instancemethod(method):
return make_instancemethod, (method.im_self,
On Tue, 01 Jul 2008 23:25:53 -0700, bsagert wrote:
> This simple script writes html color codes that can be viewed in a
> browser. I used short form hex codes (fff or 000, etc) and my list
> has only six hex numbers otherwise the results get rather large. I
> invite criticism as to whether my cod
On 2008-07-01, Brandon <[EMAIL PROTECTED]> wrote:
> What I'm trying to do is essentially force a user to fill in required items
> in a form, which will be saved to a database. How can I get it so that once
> the user clicks "OK" on the dialog box, it transfers control back to the
> form, and no
On 2008-07-02, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> This simple script writes html color codes that can be viewed in a
> browser. I used short form hex codes (fff or 000, etc) and my list
> has only six hex numbers otherwise the results get rather large. I
> invite criticism as to whethe
I am not sure what is going on here. Here is the code that is being run:
def getWords(self):
self.n=0
for entry in self.listBuffer:
self.wordList[self.n] = entry.get()
self.n=self.n+1
print self.wordList
This is the "listBuffer" that you see:
sel
chamalulu a écrit :
On Jul 2, 1:17 am, Gary Herron <[EMAIL PROTECTED]> wrote:
No need. Also, you can define a class attribute (C++ might call it a
static attribute) and access it transparently through an instance.
class C:
aClassAttribute = 123
def __init__(self, ...):
...
c = C()
..
On 2008-07-02, Alexnb <[EMAIL PROTECTED]> wrote:
> I have no idea what "list assignment index out of range means?!?!
You are assigning a value to a non-existing list element, as in
>>> x = [1]
>>> x[2] = 4
Traceback (most recent call last):
File "", line 1, in ?
IndexError: list assignment in
well okay, so what can I do?
A.T.Hofkamp-3 wrote:
>
> On 2008-07-02, Alexnb <[EMAIL PROTECTED]> wrote:
>> I have no idea what "list assignment index out of range means?!?!
>
> You are assigning a value to a non-existing list element, as in
>
x = [1]
x[2] = 4
> Traceback (most recen
Alexnb wrote:
I am not sure what is going on here. Here is the code that is being run:
def getWords(self):
self.n=0
for entry in self.listBuffer:
self.wordList[self.n] = entry.get()
And what does self.wordList begin as? If {}, then the assignemt is
invalid. Per
Actually I tried that and had no sucsess, but I just figured it out. I set
every value in wordList to 'None' and so even if all the entry fields aren't
taken up, they go to '', so I can tell what is and what isn't taken up, and
get the string of the ones that are taken up.
Terry Reedy wrote:
>
On Jul 1, 12:15 am, Fuzzyman <[EMAIL PROTECTED]> wrote:
> On Jun 30, 10:46 pm, Ali Servet Dönmez <[EMAIL PROTECTED]> wrote:
>
>
>
> > I don't want to be so mean here, but how hard it could be be writing a
> > freesoftware which would automatically/intelligently auto complete
> > Python code? (I mea
Kurda Yon a écrit :
On Jul 1, 5:01 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
On 1 juil, 22:43, Kurda Yon <[EMAIL PROTECTED]> wrote:
Hi,
I have a class called "vector". And I would like to define a function
"dot" which would return a dot product of any two "vectors". I want
to call
On 2008-07-01 20:31, Peter Bulychev wrote:
Hello.
I want to convert unicode character into ascii one.
The method ".encode('ASCII') " can convert only those unicode characters,
which fit into 0..128 range.
But there are still lots of characters beyond this range, which can be
manually converted
Alexnb wrote:
>
> I am not sure what is going on here. Here is the code that is being run:
>
> def getWords(self):
> self.n=0
The value of self.n only makes sense within the method, so you better use
the local variable n instead of the instance attribute self.n
> for entry in s
Hi,
I've got some problems with the following setup.py file.
using "python setup.py install -f" it shows that wrap_ica.so is copied
to /usr and not to /site-packages as I assumed.
What am I doing wrong ? I'm using Python 2.4 on Debian Linux.
---
Alexnb wrote:
> well okay, so what can I do?
>
>
>
Firstly, stop top posting. Replies to a thread "flow" better if bottom
posted.
Secondly, it sounds like you want to build a list of the results from
your entry.get() calls.
Try this:
self.wordList = []
def getWords(self):
for entry in se
Maric Michaud a écrit :
Le Saturday 28 June 2008 06:30:50 Tim Roberts, vous avez écrit :
Others really like the TAL scheme in Zope.
For my taste, TAL just requires too much non-essential syntax; it
interferes with the reading of the page.
So, the folks who like TAL can go ahead and be product
Alexnb a écrit :
I am not sure what is going on here. Here is the code that is being run:
def getWords(self):
self.n=0
for entry in self.listBuffer:
self.wordList[self.n] = entry.get()
self.n=self.n+1
print self.wordList
def get_words(self):
In article <[EMAIL PROTECTED]>,
Neal Becker <[EMAIL PROTECTED]> wrote:
>What is a good way to emulate:
>
>from module import xxx
>where 'module' is a dynamically generated string?
>
>__import__ ('modulename', fromlist=['xxx'])
>
>seems to be what I want, but then it seems 'xxx' is not placed in gl
On Jul 2, 10:13 am, Bruno Desthuilliers wrote:
> Nope. The wrapping happens at lookup time, thru the descriptor protocol
> (the same thing that gives support for properties).
Aha, I should read up on that.
> Help on built-in function dir in module __builtin__:
So, the dir function is a little m
Hi..!!
I was thinking to perform bluetooth Communication with Python.
So can any1 guide me from where to start...i mean any particular module or
library for that, any documentations for that..etc etc...
--
http://mail.python.org/mailman/listinfo/python-list
Thanks,
Srini
Best Jokes, Best Friends, Best Food and more. Go to
http://in.promos.yahoo.com/groups/bestofyahoo/
--
http://mail.python.org/mailman/listinfo/python-list
Le Wednesday 02 July 2008 01:17:21 Gary Herron, vous avez écrit :
> chamalulu wrote:
> > On Jul 1, 11:24 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
> >> chamalulu schrieb:
> >>> Hello.
> >>> I think I'm aware of how attribute access is resolved in python. When
> >>> referencing a class insta
Le Wednesday 02 July 2008 01:16:30 Ben Keshet, vous avez écrit :
> Hi,
>
> I am a very beginner Python programmer with limited programming
> experience overall.
>
> I am trying to write a script that will search for the second and third
> appearance of the symbol '@' in a file, will read a random l
Cédric Lucantis <[EMAIL PROTECTED]> writes:
> Le Wednesday 02 July 2008 01:16:30 Ben Keshet, vous avez écrit :
> > I am trying to write a script that will search for the second and
> > third appearance of the symbol '@' in a file, will read a random
> > line between them, and write the line into a
Hi,
I need to script SAP GUI running on MS-Windows:
Open SAP GUI window, if it is not already open, and then batch input
some keystrokes.
The following solutions were found by google:
- autohotkey: not preferred, since it has an own programming
language. This will slow down development.
HI Peter,
It works will for instance and class methods. But it doesn't work for static
methods.
Can you tel me how to pickle static methods as well??
Thanks,
Srini
- Original Message
From: Peter Otten <[EMAIL PROTECTED]>
To: python-list@python.org
Sent: Wednesday, 2 July, 2008 12:53:19 P
First of all Linux is much better place.
why you want to automate GUI with python. You can easily use QTP such
GUI testing tools to automate your staff.
But that does not mean I am saying the Python is bad in any way. Py and
Perl are the two most good things in this world.
py-py,
Prosenjit
Hi All, import re
msg=raw_input('Enter the email : ')
def validateEmail(email):
#if re.match("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]
{1,3})(\\]?)$", email) != None:
if re.match("^([EMAIL PROTECTED])@((?:[-a-z0-9]+\.)+[a-z]{2,})$",
email) != None:
p
srinivasan srinivas wrote:
(Please don't top-post)
> It works will for instance and class methods. But it doesn't work for
> static methods. Can you tel me how to pickle static methods as well??
For static methods pickling is not so easy because these don't carry
information about the class they
Hi all, I'm a Python newbie, so please pardon me if my question may look a
little silly. :)
I want to modify a binary file p.data (which has some C-style "short"
integers -- 16-bit integers) in such a way:
The bit m and bit n of every "short int" si in the file are set to 1, and
the left bits in s
Le Wednesday 02 July 2008 14:05:39 Jim Brown, vous avez écrit :
> Hi all, I'm a Python newbie, so please pardon me if my question may look a
> little silly. :)
>
> I want to modify a binary file p.data (which has some C-style "short"
> integers -- 16-bit integers) in such a way:
> The bit m and bit
I am writing client-server program. The server will send a methodname and its
arguments to a client. The client has to execute the method and return back the
results.
Thanks,
Srini
- Original Message
From: Peter Otten <[EMAIL PROTECTED]>
To: python-list@python.org
Sent: Wednesday, 2 J
Rich Harkins <[EMAIL PROTECTED]> wrote:
> Nick Craig-Wood wrote:
> [snip]
> > By definition any function in a functional language will
> > always produce the same result if given the same arguments, so you can
> > memoize any function.
> >
>
> Ah, so that's why time.time() seems to be stuck...
On Jul 2, 12:41 pm, Sallu <[EMAIL PROTECTED]> wrote:
> Hi All, import re
> msg=raw_input('Enter the email : ')
>
> def validateEmail(email):
>
> #if re.match("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]
> {1,3})(\\]?)$", email) != None:
> if re.match("^([EMAIL PROTECTED]
> If you want to validate the domain, do a DNS lookup on the domain or
> some such. I don't think there are standard modules to provide this
> functionality included with python. You could try using the socket
> module, and reading up on the relevant protocols, or making calls to
> external progra
On Jul 2, 7:25 am, [EMAIL PROTECTED] wrote:
> This simple script writes html color codes that can be viewed in a
> browser. I used short form hex codes (fff or 000, etc) and my list
> has only six hex numbers otherwise the results get rather large. I
> invite criticism as to whether my code is "py
Hello. Been using the gnuplot lately. Program runs fine. And its plots
as well. Now i want to make an exe file out of this program using
py2exe. Cud some1 help me in telling me how this is done. Thnks
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, Jul 1, 2008 at 1:46 PM, Gary Duzan <[EMAIL PROTECTED]> wrote:
> In article <[EMAIL PROTECTED]>,
> Neal Becker <[EMAIL PROTECTED]> wrote:
>>What is a good way to emulate:
>>
>>from module import xxx
>>where 'module' is a dynamically generated string?
>>
>>__import__ ('modulename', fromlist=
Another thing I'd like to add on this subject.
I agree with others here that having logic in the view isn't really a
bad thing. I used to think it did, but now I don't think it does as
much. I feel that when you're separating out the view, you're giving
really non-programmers the ability to actu
I just got this link in a german newsgroup:
http://pywinauto.openqa.org/
Seems to be what I was looking for. Nevertheless feedback still welcome.
Thomas Guettler schrieb:
Hi,
I need to script SAP GUI running on MS-Windows:
Open SAP GUI window, if it is not already open, and then batch input
Sallu <[EMAIL PROTECTED]> writes:
> validateEmail(msg) i wrote a script above it works fine
Actually, no. It rejects a great many email addresses that are valid.
> but it does not check for valid domain like .com .org .in how to
> validate with domain
To validate a domain for delivery of email
Hi,
how do you distribute ctypes based modules on a linux machine ? What
does your setup.py look like ?
I have to copy my shared library to /usr/lib or another common place,
but I would prefer .../site-packages/...
In the latter case I have to modify LD_LIBRARY_PATH oder some
ld.so.conf configura
Can someone help me with this script, which I found posted elsewhere?
I'm trying to figure out what is going on here so that I can alter it
for my needs, but the lack of descriptive names is making it
difficult. And, the script doesn't quite do anything worthwhile -- it
unzips one file from a zipf
On Jul 2, 2:39 pm, noydb <[EMAIL PROTECTED]> wrote:
> Can someone help me with this script, which I found posted elsewhere?
> I'm trying to figure out what is going on here so that I can alter it
> for my needs, but the lack of descriptive names is making it
> difficult. And, the script doesn't qu
On Jul 2, 3:39 pm, noydb <[EMAIL PROTECTED]> wrote:
> Can someone help me with this script, which I found posted elsewhere?
> I'm trying to figure out what is going on here so that I can alter it
> for my needs, but the lack of descriptive names is making it
> difficult. And, the script doesn't qu
Le Wednesday 02 July 2008 15:39:51 noydb, vous avez écrit :
> Can someone help me with this script, which I found posted elsewhere?
> I'm trying to figure out what is going on here so that I can alter it
> for my needs, but the lack of descriptive names is making it
> difficult. And, the script do
Hello everyone
Can someone help me fix this problem?
I am using an example from Pyro(Python Remote Object) website
directly.
It is the last example from
http://pyro.sourceforge.net/manual/8-example.htm
I have two computers to run Server and Client.
ser
Hello,
I'm new to python and i'm deelopping a small game with pygame.
I got lot of fun with python.
Trying to implement a config file to save user score and config.
Reading doc and some tutorial about file handling i read about pickle,
and yes it's very easy to implement.
But i thought i miss som
Hi. I'm using the win32 module to access an Access database, but I'm
running into the File Sharing lock count as in
http://support.microsoft.com/kb/815281
The solution I'd like to use is the one where you can temporarily
override the setting using (if we were in VB):
DAO.DBEngine.SetOption dbmax
Thomas Guettler <[EMAIL PROTECTED]>:
> Hi,
>
> I need to script SAP GUI running on MS-Windows:
Doesn't that thing have a COM interface?
--
Freedom is always the freedom of dissenters.
(Rosa Luxemburg)
--
http://mail.python.org/mailman/listinfo/python-list
On Jul 2, 10:07 am, Cédric Lucantis <[EMAIL PROTECTED]> wrote:
> Le Wednesday 02 July 2008 15:39:51 noydb, vous avez écrit :
>
>
>
>
>
> > Can someone help me with this script, which I found posted elsewhere?
> > I'm trying to figure out what is going on here so that I can alter it
> > for my needs
Thank you.
That is exactly what I was looking for.
2008/7/2 Jim <[EMAIL PROTECTED]>:
> Peter Bulychev wrote:
> > I want to convert unicode character into ascii one.
> You have to make some arbitrary choices of what to translate. Based
> on some materials on effbot's site, and a recipe, I made
Iain King wrote:
Hi. I'm using the win32 module to access an Access database, but I'm
running into the File Sharing lock count as in
http://support.microsoft.com/kb/815281
The solution I'd like to use is the one where you can temporarily
override the setting using (if we were in VB):
DAO.DBEng
I'm working on spell suggestions for a list of places(~10^6) e.g pizza
huthttp://www.nabble.com/Spell-suggest-for-locations-tp18239043p18239043.html
Sent from the Python - python-list mailing list archive at Nabble.com.
--
http://mail.python.org/mailman/listinfo/python-list
On Jul 2, 8:26 am, srinivasan srinivas <[EMAIL PROTECTED]>
wrote:
> I am writing client-server program. The server will send a methodname and its
> arguments to a client. The client has to execute the method and return back
> the results.
Are you aware of Pyro [1] ? Btw, you use the terminology
TheDarkTrumpet a écrit :
Another thing I'd like to add on this subject.
I agree with others here that having logic in the view isn't really a
bad thing. I used to think it did, but now I don't think it does as
much. I feel that when you're separating out the view, you're giving
really non-prog
Le Wednesday 02 July 2008 16:09:07 Pierre-Alain Dorange, vous avez écrit :
> Hello,
>
> I'm new to python and i'm deelopping a small game with pygame.
> I got lot of fun with python.
>
> Trying to implement a config file to save user score and config.
> Reading doc and some tutorial about file hand
On Jul 2, 3:29 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
> Iain King wrote:
> > Hi. I'm using the win32 module to access an Access database, but I'm
> > running into the File Sharing lock count as
> > inhttp://support.microsoft.com/kb/815281
> > The solution I'd like to use is the one where you c
On Jun 30, 3:16 pm, Mike <[EMAIL PROTECTED]> wrote:
> On Jun 30, 1:41 pm, George Sakkis <[EMAIL PROTECTED]> wrote:
>
>
>
> > Because _typically_ a web template consists of mostly HTML, with
> > relatively little presentational logic and (ideally) no business
> > logic. Now, if all one wants to do i
I posted this on c.l.p, but with the high level of traffic there, I
thought I'd try to post here as well.
I've embedded Python in an extension for a program we are using here
at work. And I'm a bit stumped as to why I am getting an
AttributeError only in the embedded Python.
First, a bit of what
On Jul 2, 3:07 pm, Cédric Lucantis <[EMAIL PROTECTED]> wrote:
> Le Wednesday 02 July 2008 15:39:51 noydb, vous avez écrit :
>
>
>
> > Can someone help me with this script, which I found posted elsewhere?
> > I'm trying to figure out what is going on here so that I can alter it
> > for my needs, but
Woman on Top Sex Position - The Sexiest Mattress Move ...
Top 10 Sex Stories of 2006
For your end-of-the-year sexual entertainment, my picks for the Top 10
Sex Stories of 2006:. 10. The Larry Wachowski Story ...
click him in poen viset.
*
htt://mountanbikes.bl
Hello everyone,
I can embed Python interpreter in C code now, but now there's another
problem, importing modules in Python code doesn't work:
Exception exceptions.ImportError:
'/usr/lib/python2.4/lib-dynload/timemodule.so: undefined symbol:
PyModule_AddObject' in 'garbage collection' ignored
Cédric Lucantis <[EMAIL PROTECTED]> wrote:
> Here self is only a local variable and its meaning is only a convention. So
> assigning it to a new value won't change the object itself (and is not a good
> idea as it may be confusing for the reader).
Thanks, i was thinking about something like that.
OK I found the answer in yet another Google search, right after
I gave up and posted here - turns out in order to import dynamically
linked modules, one has to pass -E argument to the linker.
Exception exceptions.ImportError:
'/usr/lib/python2.4/lib-dynload/timemodule.so: undefined symbol:
Py
Hello everyone,
And now for something completely different: signal handling sometimes
works, sometimes it doesn't.
When I embed following code, it works:
count = 0
def test():
global count
while True:
count += 1
if (count % 10 == 0):
Pierre-Alain Dorange a écrit :
Cédric Lucantis <[EMAIL PROTECTED]> wrote:
Here self is only a local variable and its meaning is only a convention. So
assigning it to a new value won't change the object itself (and is not a good
idea as it may be confusing for the reader).
Thanks, i was thinki
Iain King wrote:
On Jul 2, 3:29 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
Iain King wrote:
Hi. I'm using the win32 module to access an Access database, but I'm
running into the File Sharing lock count as
inhttp://support.microsoft.com/kb/815281
The solution I'd like to use is the one where yo
Floris Bruynooghe wrote:
> I'm trying to use the .xpath('id("foo")') function on an lxml tree but
> can't get it to work.
Quick follow-up: this has been answered on the lxml mailing list:
http://comments.gmane.org/gmane.comp.python.lxml.devel/3815
Stefan
--
http://mail.python.org/mailman/listinf
i want to process a large number of images and store their respective
pixels in a matrix.
what is the mostt efficient way of opening and checking them?
i doubt pygame is made for this purpose :)
i guess i could also use tkinter?
and why cant i print out matrix after getting the pixels? do i hav
> > I'll also try the dictionnary method.
> > My final idea was that a dictionnary would be perhaps simple in the
> > future to save/load as XML and a parser.
> XML ? What a strange idea ?
Why is it so strange ? Many softs have their config in xml, and the xml.*
modules are not that hard to use.
On Jul 1, 8:42 pm, Jim <[EMAIL PROTECTED]> wrote:
> On Jul 1, 8:29 pm, John Machin <[EMAIL PROTECTED]> wrote:
> > Comments on the above grep output:
> > 1. You have SOFT HYPHEN twice, mapping it to u'-' and '-'
>
> Hmph. I'll correct that. Thanks.
Well, maybe not. I forgot that I got the by-hand
defn noob wrote:
i want to process a large number of images and store their respective
pixels in a matrix.
what is the mostt efficient way of opening and checking them?
i doubt pygame is made for this purpose :)
i guess i could also use tkinter?
and why cant i print out matrix after getting t
Right, I didn't realize before that Python interpreter has its own
signal handling routines.
Now I am able to handle signals in Python code, but it still barfs on exit:
import time
import signal
import sys
def userBreak(sigNum, execFrame):
print "Interrupted,,,"
sys.exit(sigN
On 2008-07-02 16:54, Iain King wrote:
On Jul 2, 3:29 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
Iain King wrote:
Hi. I'm using the win32 module to access an Access database, but I'm
running into the File Sharing lock count as
inhttp://support.microsoft.com/kb/815281
The solution I'd like to us
On 2 juil, 18:40, Cédric Lucantis <[EMAIL PROTECTED]> wrote:
> > > I'll also try the dictionnary method.
> > > My final idea was that a dictionnary would be perhaps simple in the
> > > future to save/load as XML and a parser.
> > XML ? What a strange idea ?
>
> Why is it so strange ?
It was kind o
The free Python editors/IDEs really do need work as far as code completion goes
but I am hopeful.
IMO Stani's Python Editor comes closest by providing some code sense through a
combination of history and doc strings for Python built-ins. Where it falls
short is the ability to scan doc strings
On Jul 2, 7:55 pm, Ivan Ven Osdel <[EMAIL PROTECTED]> wrote:
> The free Python editors/IDEs really do need work as far as code completion
> goes but I am hopeful.
>
> IMO Stani's Python Editor comes closest by providing some code sense through
> a combination of history and doc strings for Python
If it so fast growing, I'd rather wait for a stable release...
LOL
--
http://mail.python.org/mailman/listinfo/python-list
On Jul 2, 12:43 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I'm trying to write some code to deal with world timezones, and I'm
> getting a strange result. America/Iqaluit should not be showing up in
> UTC+00:00, but it is. Can anyone see what's wrong with this code?
>
> import time
> fr
defn noob schrieb:
i want to process a large number of images and store their respective
pixels in a matrix.
what is the mostt efficient way of opening and checking them?
i doubt pygame is made for this purpose :)
Au contaraire, it is.
http://www.pygame.org/docs/ref/pixelarray.html
Diez
--
h
[EMAIL PROTECTED] schrieb:
Hello everyone
Can someone help me fix this problem?
I am using an example from Pyro(Python Remote Object) website
directly.
It is the last example from
http://pyro.sourceforge.net/manual/8-example.htm
I have two computers to run Server and Client.
###
In case it helps, there's a recipe just shown up
on the Python Cookbook which at least illustrates
DAO use:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/572165
TJG
--
http://mail.python.org/mailman/listinfo/python-list
Hi,
I am tring to develeop a gui with pyqt. I need to detect whether the
the cable to vga, dmi or s-video outputs are plugged or unplugged.
After detection i need to run a process. How can i do this?
--
Oğuz Yarımtepe
--
http://mail.python.org/mailman/listinfo/python-list
Can I run the python interpreter from with in Emacs?
Do i have to change anything then? or is it by default? it already
syntax-highlights python-files.
--
http://mail.python.org/mailman/listinfo/python-list
Oguz Yarimtepe schrieb:
Hi,
I am tring to develeop a gui with pyqt. I need to detect whether the
the cable to vga, dmi or s-video outputs are plugged or unplugged.
After detection i need to run a process. How can i do this?
Not with python as is. This is OS-specific, and you should see what y
this just shows a GUI that normally shows pictures but it doesnt show
any picture...
from PIL import Image
im = Image.open('C:/Users/saftarn/Desktop/images/giffer.gif')
im2 = Image.open('C:/Users/saftarn/Desktop/images/blob.jpg')
im.rotate(45).show()
im2.show()
--
http://mail.python.org/mailm
A. an error in the software that computed the value for the web page,
B. a transcription error in putting the checksum on the web page,
C. accidental corruption of the file, or
D. a deliberate attempt to substitute a file with a similar MD5 sum.
It seems that the answer is probably B. Bu
Not really, I have just worked with them more.
- Original Message -
From: "Ali Servet Dönmez" <[EMAIL PROTECTED]>
To: python-list@python.org
Sent: Wednesday, July 2, 2008 1:15:04 PM GMT -06:00 US/Canada Central
Subject: Re: Freesoftware for auto/intelligent code completing in Python
On Ju
> The free Python editors/IDEs really do need work as far as code completion
goes but I am hopeful.
I agree, I'm quite new to python and just had my period of searching for the
best IDE/editor. Wing wins for me, but it is not free (at least not te
versions which do have code completion). Pype (a f
defn noob schrieb:
Can I run the python interpreter from with in Emacs?
Yes, the python-mode supports that. Make sure to install the proper one
http://www.emacswiki.org/cgi-bin/wiki/PythonMode
Do i have to change anything then? or is it by default? it already
syntax-highlights python-files.
thanks but i dont quite understand the load-path, add to the load
path. the loadpath has a lot of variables.
so where i should i place the python-mode folder and should i then add
that directory to the loadpath?
--
http://mail.python.org/mailman/listinfo/python-list
Hi!
Linux is much better place
You confuse proselitism and objectivity...
@-salutations
--
Michel Claveau
--
http://mail.python.org/mailman/listinfo/python-list
Hi!
You can use Autoit.
Bad "conception" language ; but many good tools, for identify windows,
process, send keystrokes, emulate mouse, etc.
(Autohotkey is make on Autoit 2 ; Autoit is actually in version 3).
Good trick : Autoit-X is a COM server, with the most importants
functions of Autoit (
Imagine an excel spreadsheet. I can choose
a column and sort the records based on the items
in that column. I would like to do the same
thing with a large two dimensional array.
What would be the fastest way (in computation time)
to accomplish this?
This seems similar to a recent sorting thread
I'm using the excellent 'auto_dict'
(http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/537637) but I'd like
to be able to extend it.
Currently my program has
class auto_dict(dict):
def __getitem__(self, key):
return self.setdefault(key, self.__class__())
daily=auto_dict()
tr
I'm still very new to python, and I have a question about how to prioritize
jobs in a queue. Currently, I have a simple script that does the following:
job1 = [1, 'Task1', 'v03', '-start', 'Bonnie']
job2 = [2, 'Task2', 'v01', '-start', 'Billy']
job3 = [3, 'Task3', 'v01', '-start', 'Bob']
jobseque
> Imagine an excel spreadsheet. I can choose
> a column and sort the records based on the items
> in that column. I would like to do the same
> thing with a large two dimensional array.
> What would be the fastest way (in computation time)
> to accomplish this?
Now that I think about the prob
Diez B. Roggisch wrote:
THis is just a guess - but it seems that somehow you don't bind your
pyro objects to the NIC's IP address, but to localhost (127.0.0.1) -
which of course won't work. That never happened to me though, try and
see the pyro docs on how to prevent/control to which IP a p
1 - 100 of 129 matches
Mail list logo