Re: [Tutor] pipeline - what is it and how do I use it?

2007-11-25 Thread O.R.Senthil Kumaran
gests would just send the keystrokes to the application. http://www.rutherfurd.net/python/sendkeys/ -- O.R.Senthil Kumaran http://uthcode.sarovar.org ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Swapping variables ...

2007-11-10 Thread O.R.Senthil Kumaran
de effect thatthe variables are swapped as we see it. yes, tuple concepts does not exist in C (as it is not a Very High Level Language). yes, I too find it "cool" when I got introduced to it. -- O.R.Senthil Kumaran http://uthcode.sarovar.org __

Re: [Tutor] *args, **kargs as arguments

2007-11-10 Thread O.R.Senthil Kumaran
our explaination. It helped me clarify my doubts. :-) Really helpful. -- O.R.Senthil Kumaran http://uthcode.sarovar.org ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] *args, **kargs as arguments

2007-11-09 Thread O.R.Senthil Kumaran
a default argument, then is the dictionary values being passed through the namespace? I am scanning through the urllib.py code to understand the urlopen method and I am having the above doubts when trying to understand it. Please help. Thank you. -- O.R.Senthil Kumaran http

Re: [Tutor] parsing an array

2007-11-09 Thread O.R.Senthil Kumaran
# Untested code for i in a[:]: # You are looping through the copy of contents for j in i: # implement your logic with j if j < i[0]: # or any dynamic conditional check. a[i][j] = j Does this help you? Thanks, -- O.R.Senthil Kumaran http://uthcode.sarovar.org _

Re: [Tutor] Build exe on Vista, have it run on XP?

2007-11-01 Thread O.R.Senthil Kumaran
sible way would be to ask py2exe mailling list, if they have identified any solution for the backward compatiblities issues of VISTA exes on XP. Thanks, Senthil -- O.R.Senthil Kumaran http://uthcode.sarovar.org ___ Tutor maillist - Tutor@python.o

Re: [Tutor] Build exe on Vista, have it run on XP?

2007-10-31 Thread O.R.Senthil Kumaran
perhaps different folders can help. Thanks, Senthil -- O.R.Senthil Kumaran http://uthcode.sarovar.org ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] data type conversion for print statement

2007-09-25 Thread O.R.Senthil Kumaran
2) when the last character written to standard output is "\n", or (3) when the last write operation on standard output was not a print statement. (In some cases it may be functional to write an empty string to standard output for this reason.) Not getting the last part as how you will write

Re: [Tutor] Xml reference

2007-09-19 Thread O.R.Senthil Kumaran
entation and examples from effbot, you can go far with XML parsing. http://effbot.org/zone/element-index.htm#usage -- O.R.Senthil Kumaran http://uthcode.sarovar.org ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] class awareness of variable name

2007-09-18 Thread O.R.Senthil Kumaran
* Alan Gauld <[EMAIL PROTECTED]> [2007-09-17 18:54:43]: > If you go with the flow rather than trying to make the flow > go the way you want life is easier. Insightful. QOTW. :-) -- O.R.Senthil Kumaran http://uthcode.sarovar.org ___ Tu