R. David Murray wrote:
> Leonardo lozanne wrote:
>> I'm getting some XML tags with white spaces from a web service and
>> when I try to get them with the getElements ByTagName I'm not able to
>> do so. I'm getting an empty list. What I'm doing is:
>>
>> #XML_response is an xml string
>> xml_msg =
Trying to create a parser, that will first log into one of the account
in a certain page. Then its suppose to simulate a click on one of the
forms in the authenticated page (line 17 onwards). Does not want to
take effect. Does it have something to do with referrers or is there
anything wrong with w
On Apr 9, 8:36 pm, grocery_stocker wrote:
> On Apr 9, 7:01 pm, grocery_stocker wrote:
>
>
>
> > On Apr 9, 6:36 pm, grocery_stocker wrote:
>
> > > Given the following
>
> > > #!/usr/local/bin/python
>
> > > import os
> > > import time
> > > import thread
>
> > > def domsg(string, sleeptime, *
>> > Actually, I'm wrong: it's perfectly clear as long as the programmer
>> > is able to follow all the necessary reflexion path; then probably
>> > also able to solve the problem without any help from python.
>> >
>> > The issue here is that a very specific (and meaningful) case
>> > (dict-like be
Sorry for being careless in my choice of words: when I wrote "dictionary", I
meant a collection of words in any given human language, not a Python
dictionary.
Perhaps I should try to explain a bit more what I try to accomplish: in a
notebook the user will write text, and certain words (collect
aditya shukla wrote:
I am trying to create a temporary file.
import tempfile
temp = tempfile.NamedTemporaryFile(suffix='_suffix',
prefix='prefix_',
dir='/tmp',
)
try:
print 'temp:', te
mrstevegross wrote:
I'm trying to import a module so that the globals() of the importer
module are available to the imported module itself. Consider the
following scenario:
=== mymod.py ===
def go():
some_special_function(1,2)
# 'some_special_function' is a built-in function available in the
In article <121dcfb3-1ffe-40bf-b6dc-d2bacc073...@k19g2000prh.googlegroups.com>,
grbgooglefan wrote:
>
>How can I build a release and not the debug version of libpython.a?
>I have seen that there are assert, abort statements in lot many
>functions in Python code. I would like to avoid those when c
Hello,
Sorry for the newbie question. How do I run a program that could
block, waiting for user input, using subprocess.Popen? For example,
from subprocess import *
def foo():
a = Popen(['python'] ...)
I want to be able to get input from the user and send input to the
subprocess, printing st
On Thu, 09 Apr 2009 09:09:18 -0400, Lou Pecora wrote:
>
> Thanks, Neil. Always something to learn. I've used Numpy for several
> years, but still have not plumbed the depths. Just tried this script
> and, yep, it works.
>
> arr=array([-1,1.0,2.2,-10.0,1.1, 0.9,-0.9])
> cond= arr <
On Apr 9, 7:01 pm, grocery_stocker wrote:
> On Apr 9, 6:36 pm, grocery_stocker wrote:
>
> > Given the following
>
> > #!/usr/local/bin/python
>
> > import os
> > import time
> > import thread
>
> > def domsg(string, sleeptime, *args):
> > print "%s was here", string
> > #os.system('te
On Wed, 8 Apr 2009 19:47:46 +0100, Dale Amon wrote:
[snip]
> self.IBM029 = re.compile([^acharset]
> self.IBM026 = re.compile([^anothercharset]
Whoa! Thanks for the trip down memory lane. And a cheery
IEFBR14 to you, too.
--
To email me, substitute nowhere->spamcop, invalid->net.
--
ht
On Apr 9, 2009, at 7:37 PM, Daniel Fetchinson wrote:
I'm looking for a crawler that can spider my site and toss the
results
into mysql so, in turn, that database can be indexed by Sphinx
Search.
Since I don't want to reinvent the wheel, is anyone aware of any open
source projects or code s
In article <41d95468-8f7a-4647-83e1-6df147744...@u8g2000yqn.googlegroups.com>,
k3xji wrote:
>
>When I run the following function, I seem to have a mem leak, a 20 mb
>of memory
>is allocated and is not freed. Here is the code I run:
>
import esauth
for i in range(100):
>
>... ss
On Apr 9, 6:36 pm, grocery_stocker wrote:
> Given the following
>
> #!/usr/local/bin/python
>
> import os
> import time
> import thread
>
> def domsg(string, sleeptime, *args):
> print "%s was here", string
> #os.system('tel %s test' % person);
> #time.sleep(sleeptime)
>
> def buil
Hello,
I am writing a little program where i have an array the elements of
which i want to display upon keypresses by the user. The only way on
linux seems like using getch() from the curses library. I wanted a
simpler solution than having to use curses for such a simple thing.
any ideas?
Regards
S
Given the following
#!/usr/local/bin/python
import os
import time
import thread
def domsg(string, sleeptime, *args):
print "%s was here", string
#os.system('tel %s test' % person);
#time.sleep(sleeptime)
def buildlist():
out = 1
persons = []
while(out != 0):
In message , Peter Otten wrote:
> Lawrence D'Oliveiro wrote:
>
>> In message , Gilles Ganault
>> wrote:
>>
>>> test = "t...@gmail.com"
>>> isp = ["gmail.com", "yahoo.com"]
>>> for item in isp:
>>> if test.find(item):
>>> print item
>>> === output
>>> gmail.com
>>> yahoo.com
>>> ===
>>
>
Tim Golden wrote:
> John Doe wrote:
>> Anybody have a solution for Windows (XP) Explorer search not
>> finding ordinary text in *.py files?
>
> It came up a couple of months ago either on this
> list or on python-win32. Don't have web access
> at the moment, but try searching the archives for
>
Thanks guys! You made it work.
>On Apr 9, 12:55�pm, Chris Rebert wrote:
> On Thu, Apr 9, 2009 at 12:42 PM, Lydia wrote:
> > Hi Python users,
>
> > I ran into a problem with python coding in ARCGIS. Does anybody have the
> > experience in dealing with this?
>
> > I need to calculate NEWFIELD bas
aditya shukla wrote:
I am trying to create a temporary file.
import tempfile
temp = tempfile.NamedTemporaryFile(suffix='_suffix',
prefix='prefix_',
dir='/tmp',
)
try:
print 'temp:',
On Apr 9, 7:37 pm, Daniel Fetchinson
wrote:
> Have a look athttp://nikitathespider.com/python/
Thanks, I'll have a look.
--
http://mail.python.org/mailman/listinfo/python-list
I am trying to create a temporary file.
import tempfile
temp = tempfile.NamedTemporaryFile(suffix='_suffix',
prefix='prefix_',
dir='/tmp',
)
try:
print 'temp:', temp
print 'temp.name:'
>>> I assumed there were some decisions behind this, rather than it's just
>>> not implemented yet.
>> I believe this assumption is wrong - it's really that no code has been
>> contributed to do that.
>
> But doesn't the issue at http://bugs.python.org/issue662923 imply that
> there *was* suitable
> I'm looking for a crawler that can spider my site and toss the results
> into mysql so, in turn, that database can be indexed by Sphinx Search.
>
> Since I don't want to reinvent the wheel, is anyone aware of any open
> source projects or code snippets that can already handle this?
Have a look a
I'm looking for a crawler that can spider my site and toss the results
into mysql so, in turn, that database can be indexed by Sphinx Search.
Since I don't want to reinvent the wheel, is anyone aware of any open
source projects or code snippets that can already handle this?
Thanks for any advice.
"Martin v. Löwis" wrote:
>> I assumed there were some decisions behind this, rather than it's just
>> not implemented yet.
>
> I believe this assumption is wrong - it's really that no code has been
> contributed to do that.
But doesn't the issue at http://bugs.python.org/issue662923 imply that
the
On Apr 10, 2:36 am, John Posner wrote:
> Hrvoje Niksic wrote:
>
> > if test.contains(item) # would return a Boolean value
> >
>
> >> That's a string method, not a function in the string module.
>
> Oops, of course.
>
> import operator
> operator.contains('foo', 'o')
>
> That's
On Apr 9, 2:25 pm, mrstevegross wrote:
> I'm trying to import a module so that the globals() of the importer
> module are available to the imported module itself. [snip]
In general, the way I recommend to deal with this issue (aside from
reorganizing your code) is to pass the function you want t
> I assumed there were some decisions behind this, rather than it's just
> not implemented yet.
I believe this assumption is wrong - it's really that no code has been
contributed to do that.
For gdbm, you can also use the firstkey/nextkey methods.
Regards,
Martin
--
http://mail.python.org/mailma
> which works great. But i am not enough into python to port that to
> ipv6. It has to work under linux only. Any help is appreciated.
Not sure how universal this is, but I would read /proc/net/if_inet6.
At least, that's what ifconfig does, and it seems to work fine.
mar...@mira:~$ cat /proc/net/
> I'm not 100% sure what you're trying to do, but the above is horribly
> non-portable. You probably want to be looking at socket.getpeername() and
> socket.getsockname().
This only works if you are actually connected. I think he wants to find
out the local address without actually connecting.
Need to get up-to-speed with Python as quickly as possible? Come join
me, Wesley Chun, author of Prentice-Hall's bestseller "Core Python
Programming," for a comprehensive intro course coming up this June in
beautiful Northern California! Please pass on this note to whomever
you think may be interes
On Apr 9, 12:55 pm, Chris Rebert wrote:
> On Thu, Apr 9, 2009 at 12:42 PM, Lydia wrote:
> > Hi Python users,
>
> > I ran into a problem with python coding in ARCGIS. Does anybody have the
> > experience in dealing with this?
>
> > I need to calculate NEWFIELD based on OLDFIELD under condition: if
mrstevegross wrote:
> I'm trying to import a module so that the globals() of the importer
> module are available to the imported module itself. Consider the
> following scenario:
>
> === mymod.py ===
> def go():
> some_special_function(1,2)
> # 'some_special_function' is a built-in function a
janus99 writes:
> if u've never read it, it'll knock ur socks off, and the comments
> are riveting
Please save it for another forum in future.
--
\ “It is wrong to think that the task of physics is to find out |
`\ how nature *is*. Physics concerns what we can *say* about |
_o
mrstevegross wrote:
I'm trying to import a module so that the globals() of the importer
module are available to the imported module itself
One awkward solution is to deliberately initialize mymod.py
That will work, but it's a bit ugly. Plus, I have to repeat it for
every module with t
Avi wrote:
> Hi,
>
> What is a good way to learn Python?
>
> Do you recommend going by a book (suggestions welcome) or learning
> with tutorials? Both?
>
> Thanks in advance,
> Avi
A good book is Learning Python by Lutz (O'Reilly)
Then, you need to do some actual programming. The best way is
Lydia wrote:
Thanks for the suggestion.
But I guess under Python this doesn't work. I tried putting the code in
different ways. But still not worked.
codeblock = "def codefun(code): \\
if code == 0: \\
return \"B\" \\
Hi Esmail.
I've not looked at the site. however, i can give you some general pointers
that might help you in solving your issue.
first off, try to accomplish your goal, using curl, or one of the other
cmdline apps that fetch page data. this allows you to quickly nail down any
issues that might oc
Peter Otten wrote:
Dale Amon wrote:
This finds nothing:
import re
import string
card = "abcdef"
DEC029 = re.compile("[^&0-9A-Z/ $*,.\-:#@'=\"[<(+\^!);\\\]%_>?]")
The regular expression you're actually providing is:
>>> print "[^&0-9A-Z/ $*,.\-:#@'=\"[<(+\^!);\\\]%_>?]"
[^&0-9A-Z/
Joshua> Why not
Joshua> for key in d.keys():
Joshua> print key
Joshua> That worked for me.
Time & space. One motivation for using dbm files is to write large (huge,
in fact) mappings to disk. Simply reconstituting the entire set of keys may
consume a lot of time (they must
Jason Scheirer wrote:
On Apr 9, 9:12 am, Alan Kennedy wrote:
Hi all,
You may be interested to know that you can now run jython 2.2 out of
the box on Google AppEngine, thanks to their new java support.
...
Finally! A way to run Python on App Engine!
?
Is that some kind of weird humor? :-)
Hi,
I am trying to keep track of two flight bookings on the kayak.com
web site, and would like to automate my query using Python. If I
enter the url below myself into the browser, a form gets filled
out and the site searches for flights. I would love to be able to
have a simple python script whi
keys() returns a list and my question was not about "how to" but more
like "why"...
I assumed there were some decisions behind this, rather than it's just
not implemented yet.
Best,
On Friday, April 10, 2009, Joshua Kugler wrote:
> Akira Kitada wrote:
>
>> The loop has to be:
>> """
> k = d.f
i am using these modules:
import cgi,time
import cgitb; cgitb.enable()
iis webmapping now works with -U (key was to remove '-u' from the
grouping of "s"'s:
C:\Python25\python.exe -u "%s %s"
here is the form html code:
Server name:
File name:
i increased the timeout on the IIS server to 2,200
I'm trying to import a module so that the globals() of the importer
module are available to the imported module itself. Consider the
following scenario:
=== mymod.py ===
def go():
some_special_function(1,2)
# 'some_special_function' is a built-in function available in the
scope of foo.py (see
Thanks for the suggestion.
But I guess under Python this doesn't work. I tried putting the code in
different ways. But still not worked.
codeblock = "def codefun(code): \\
if code == 0: \\
return \"B\" \\
els
Akira Kitada wrote:
> The loop has to be:
> """
k = d.firstkey()
while k != None:
> ...print k
> ...k = d.nextkey(k)
> key2
> key1
> """
Why not
for key in d.keys():
print key
That worked for me.
j
--
http://mail.python.org/mailman/listinfo/python-list
Dale Amon wrote:
> This finds nothing:
>
> import re
> import string
> card = "abcdef"
> DEC029 = re.compile("[^&0-9A-Z/ $*,.\-:#@'=\"[<(+\^!);\\\]%_>?]")
> errs = DEC029.findall(card.strip("\n\r"))
> print errs
>
> This works correctly:
>
> import re
> import string
> card
On Thu, Apr 9, 2009 at 12:42 PM, Lydia wrote:
> Hi Python users,
>
> I ran into a problem with python coding in ARCGIS. Does anybody have the
> experience in dealing with this?
>
> I need to calculate NEWFIELD based on OLDFIELD under condition: if OLDFIELD
> == 0 then return string "B" otherwise
This finds nothing:
import re
import string
card = "abcdef"
DEC029 = re.compile("[^&0-9A-Z/ $*,.\-:#@'=\"[<(+\^!);\\\]%_>?]")
errs = DEC029.findall(card.strip("\n\r"))
print errs
This works correctly:
import re
import string
card = "abcdef"
DEC029 = re.compile("[^&0-9A-
Hi Python users,
I ran into a problem with python coding in ARCGIS. Does anybody have the
experience in dealing with this?
I need to calculate NEWFIELD based on OLDFIELD under condition: if OLDFIELD ==
0 then return string "B" otherwise return "".
codeblock = "def codefun(code): if code == 0
pyt...@bdurham.com wrote:
> Any recommendations on Python based tree data structures that I
> can study? I'm working on an application that will model a basic
> outline structure (simple tree) and am looking for ideas on
> Pythonic implementation techniques. By outline I mean a
> traditional hierar
I'm writing a Python graph library (called Graphine) that's
pretty easy to use and does what you want. It is pre-alpha
right now, but if you're interested please let me know- I'm
very interested in hearing outside opinions.
--
http://mail.python.org/mailman/listinfo/python-list
> Peter Otten wrote:
>> Could you explain why you prefer 'contains(belly, beer)'
>> or 'belly.contains(beer)' over 'beer in belly'? The last form may be
a bit
>> harder to find in the documentation, but once a newbie has learned about
>> it he'll find it easy to remember.
andrew cooke wrote:
how about sympy? http://code.google.com/p/sympy/
--
http://mail.python.org/mailman/listinfo/python-list
On Apr 9, 9:12 am, Alan Kennedy wrote:
> Hi all,
>
> You may be interested to know that you can now run jython 2.2 out of
> the box on Google AppEngine, thanks to their new java support.
>
> A patch is required for jython 2.5, but we will be folding this in
> before the jython 2.5 RC release over
On Thu, 2009-04-09 at 12:35 +0530, srinivasan srinivas wrote:
> Hi,
> I would like to know about the unittest.TestSuite clearly like at what
> situations i can use this TestSuite? I am not getting the clear difference
> between this and unittest.TestCase.
>
> Thanks,
> Srini
>
Isn't that pritt
On 2009-04-09, Avi wrote:
> I love this group and all the awesome and python savvy people
> who post here. However I also see some dumb posts like 'shoes'
> or something related to sex :(
And occasionally both. ;)
> What can we do about crap like this?
I don't know about "we", but you have a f
On Apr 9, 10:56 am, Joel Hedlund wrote:
> Hi all!
>
> I'm writing a program that presents a lot of numbers to the user, and I
> want to let the user apply moderately simple arithmentics to these
> numbers.
Joel -
Take a look at the examples page on the pyparsing wiki (http://
pyparsing.wikispace
> Any recommendations on Python based tree data structures that I
> can study? I'm working on an application that will model a basic
> outline structure (simple tree) and am looking for ideas on
> Pythonic implementation techniques. By outline I mean a
> traditional hierarchical document outline (s
In article ,
George Sakkis wrote:
>
>To take it further, what if f wants to return different types,
>differing even in a duck-type sense? That's easier to illustrate in a
>API-extension scenario. Say that there is an existing function `solve
>(x)` that returns `Result` instances. Later someone w
On Apr 9, 2:58 am, Neil Crighton wrote:
> Carl Banks gmail.com> writes:
>
> > > >>> condition = (min_time <= time) & (time <= max_time)
> > > >>> new_time = time[condition]
> > > >>> new_energy = energy[condition]
>
> > Won't work: condition is an array of ones and zeros, but you need to
> > inde
Avi wrote:
> Hey Folks,
>
> I love this group and all the awesome and python savvy people who post
> here. However I also see some dumb posts like 'shoes' or something
> related to sex :(
>
> What can we do about crap like this? Can we clean it up? Or atleast
> flag some for removal.
>
> Moderat
are you on the mailing list (python-list@python.org) or reading via google
groups? groups is full of junk, but the list is filtered. the (filtered)
list is also available via gmane and similar.
(disclaimer - i also use spamassasin so it's possible that is cleaning the
mail up, but this discussi
Hey Folks,
I love this group and all the awesome and python savvy people who post
here. However I also see some dumb posts like 'shoes' or something
related to sex :(
What can we do about crap like this? Can we clean it up? Or atleast
flag some for removal.
Moderators?
--
http://mail.python.org/
On Apr 9, 8:26 am, David Smith wrote:
> AggieDan04 wrote:
> > On Apr 8, 12:08 pm, David Smith wrote:
> >> Avi wrote:
> >>> Hi,
> >>> This will be a very simple question to ask all the awesome programmers
> >>> here:
> >>> How can I get answer in in decimals for such a math operator:
> >>> 3/2
> >
Joel Hedlund wrote:
Hi all!
I'm writing a program that presents a lot of numbers to the user, and I
want to let the user apply moderately simple arithmentics to these
numbers. One possibility that comes to mind is to use the eval function,
but since that sends up all kinds of warning flags in
Peter Otten wrote:
> John Posner wrote:
>
>> Given how common string maniuplations are, I guess I'm surprised that
>> Python hasn't yet made "contains()" into both a "string"-module function
>> *and* a string-object method.
>
> Could you explain why you prefer 'contains(belly, beer)'
> or 'belly.co
Jeremiah Dodds wrote:
I've been looking over some of my code, and I've found something I do
that has a bit of a smell to it. I've searched the group and docs, and
haven't found much of anything that solves this particular problem,
although I may just not be searching correctly.
Anyhow, I find
On Apr 9, 10:56 am, Joel Hedlund wrote:
> Hi all!
>
> I'm writing a program that presents a lot of numbers to the user, and I
> want to let the user apply moderately simple arithmentics to these
> numbers. One possibility that comes to mind is to use the eval function,
> but since that sends up al
John Posner wrote:
> Given how common string maniuplations are, I guess I'm surprised that
> Python hasn't yet made "contains()" into both a "string"-module function
> *and* a string-object method.
Could you explain why you prefer 'contains(belly, beer)'
or 'belly.contains(beer)' over 'beer in be
Hrvoje Niksic wrote:
> if test.contains(item) # would return a Boolean value
>
>> That's a string method, not a function in the string module.
Oops, of course.
import operator
operator.contains('foo', 'o')
That's pretty good, and IMHO a bit better than John Machin's suggestion
Joel Hedlund wrote:
> Hi all!
>
> I'm writing a program that presents a lot of numbers to the user, and I
> want to let the user apply moderately simple arithmentics to these
> numbers. One possibility that comes to mind is to use the eval function,
> but since that sends up all kinds of warning f
Any recommendations on Python based tree data structures that I
can study? I'm working on an application that will model a basic
outline structure (simple tree) and am looking for ideas on
Pythonic implementation techniques. By outline I mean a
traditional hierarchical document outline (section, ch
Hi all,
You may be interested to know that you can now run jython 2.2 out of
the box on Google AppEngine, thanks to their new java support.
A patch is required for jython 2.5, but we will be folding this in
before the jython 2.5 RC release over the next few weeks.
More details here
http://jytho
John Posner writes:
> Q: Has anyone on the python-dev list ever proposed a "string"-module
> function that does the job of the "in" operator? Maybe this:
>
> if test.contains(item) # would return a Boolean value
That's a string method, not a function in the string module. If you
want a fun
Hi all!
I'm writing a program that presents a lot of numbers to the user, and I
want to let the user apply moderately simple arithmentics to these
numbers. One possibility that comes to mind is to use the eval function,
but since that sends up all kinds of warning flags in my head, I thought
Peter Otten wrote:
W. eWatson wrote:
Something is amiss here. The program produces a canvas in which one can
move an object around. The input file is hard coded (see open). If you
want to try it, you'll need to provide a file. Python error below. Name
space difficulty?
Traceback (most recent
Does anybody knows about a module to assist with text
autocompletion for a given dictionary?
On machines with the GNU readline library available, Python
provides the "readline" module which should allow for
auto-completion.
-tkc
--
http://mail.python.org/mailman/listinfo/python-list
Leonardo lozanne wrote:
> Hi,
>
> I'm getting some XML tags with white spaces from a web service and when I try
> to get them with the getElements ByTagName I'm not able to do so. I'm getting
> an empty list. What I'm doing is:
>
> #XML_response is an xml string
> xml_msg = xml.dom.minidom.p
Hey guys,
I'm trying to write a new array from the one i already have
but here is the catch:
I want an array where n=# of data points used in previous point (rounded down)
in every spot, I want to take 1.1**n data points and then take the mean of the
data points. (i know there is a n
Hi All,
Does anybody knows about a module to assist with text autocompletion for a
given dictionary?
Thanks,
SxN
__
Ask a question on any topic and get answers from real people. Go to Yahoo!
Answers and share what you know
Hi,
I was wondering why *dbm modules in Python do not give us an iterable interface?
Take a look at an example below
"""
# Python 2.6
>>> import gdbm
>>> d = gdbm.open("spam.db", "n")
>>> d["key1"] = "ham"
>>> d["key2"] = "spam"
>>>
>>> for k in d:
... print k
...
Traceback (most recent call
Murali kumar wrote:
> hi all..
>
>
> please see my attached document..
I think you'll get more help if you post in plain text.
--
R. David Murray http://www.bitdance.com
--
http://mail.python.org/mailman/listinfo/python-list
hi
i am trying to move from threading to processing package. this is the
controller i used to spawn new threads, and it used the global
variable done to check if it needs to spawn more threads or not. it worked
great for me. it checks if there is new data to be processed every
30 seconds, and spawn
On Apr 10, 12:40 am, MRAB wrote:
> reetesh nigam wrote:
> > Hi All,
> > There is some special character in my database.
> > and when try to show on my UI it says
>
> > return codecs.utf_8_decode(input, errors, True)
> > UnicodeDecodeError: 'utf8' codec can't decode byte 0xc4 in position
> > 10
2009/4/9 Miles :
> Clearly, any comparison with a boolean literal should be illegal. ;)
Hey, we could have strict type checking at compile time of /all/
operations, couldn't we? Anybody care to join me over at the Ada list?
;-)
--
Tim Rowe
--
http://mail.python.org/mailman/listinfo/python-list
On Apr 10, 12:35 am, John Posner wrote:
> Lawrence D'Oliveiro wrote:
>
> > Fine if it only happened once. But it's a commonly-made mistake. At some
> > point you have to conclude that not all those people are stupid, there
> > really is something wrong with the design.
>
> I think "something wr
reetesh nigam wrote:
Hi All,
There is some special character in my database.
and when try to show on my UI it says
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xc4 in position
10: unexpected end of data
Can any one help to solve this p
Lawrence D'Oliveiro wrote:
> Fine if it only happened once. But it's a commonly-made mistake. At some
> point you have to conclude that not all those people are stupid, there
> really is something wrong with the design.
I think "something wrong with the design" is overstating the case a bit,
an
srinivasan srinivas yahoo.co.in> writes:
>
>
> Hi,
> I would like to know about the unittest.TestSuite clearly like at what
situations i can use this TestSuite?
> I am not getting the clear difference between this and unittest.TestCase.
You write your actual tests with TestCase. A TestSuite st
Hi All,
There is some special character in my database.
and when try to show on my UI it says
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xc4 in position
10: unexpected end of data
Can any one help to solve this problem
--
http://mail.p
In article ,
Neil Crighton wrote:
>
> I'm not sure exactly what you're trying to do, but maybe you want a boolean
> array to select the right elements? So if time and energy are 1-d numpy arrays
> of the same length:
>
> >>> condition = (min_time <= time) & (time <= max_time)
> >>> new_time =
In article ,
Rhodri James wrote:
>
>You'll note that this is, all Aaron's protests to the contrary,
>splitting your class up into multiple cooperating classes.
Ayup.
>If you're set on doing it like this, doing it this way avoids polluting
>your namespace so much:
>
>class ClsB(object):
> c
AggieDan04 wrote:
> On Apr 8, 12:08 pm, David Smith wrote:
>> Avi wrote:
>>> Hi,
>>> This will be a very simple question to ask all the awesome programmers
>>> here:
>>> How can I get answer in in decimals for such a math operator:
>>> 3/2
>>> I get 1. I want to get 1.5
>>> Thanks in advance,
>>>
In article
<86176ef7-c2e0-4c5d-b883-d91672e3e...@w40g2000yqd.googlegroups.com>,
Kai Timmer wrote:
> Hello,
> i need a function that returns the ipv6 address from a given interface
> name. For ipv4 i use this one:
> def get_ip_address(ifname):
> s = socket.socket(socket.AF_INET, socket.SOCK_DG
andrew cooke wrote:
[...]
> but when you need to access instances by more than one value (.bar and
> .baz) then typically that's a hard problem, and there's a trade-off
> somewhere. you might find writing a special container that contains two
> dicts is useful. if so, you might want to use weak r
On Thu, Apr 9, 2009 at 12:16 PM, andrew cooke wrote:
> but when you need to access instances by more than one value (.bar and
> .baz) then typically that's a hard problem, and there's a trade-off
> somewhere. you might find writing a special container that contains two
> dicts is useful. if so,
1 - 100 of 124 matches
Mail list logo