Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For a given Element, I want to check whether the xsi:nil attribute is set to true.

My current code is

xsinil = dataFact.get('{http://www.w3.org/2001/XMLSchema-instance}nil', False)

But instead of being True xsinil is of type string...

What's the best solution? I don't think this is very elegant:

xsinil=dataFact.get('{http://www.w3.org/2001/XMLSchema-instance}nil', False)
if xsinil == 'true' or xsinil == '1' :
    xsinil = True
share|improve this question

2 Answers

up vote 1 down vote accepted

This looks nicer:

xsinil = dataFact.get('...', False) in ('true', '1')

It assigns True to xsinil variable only if result of get function is one of True, 'true' or '1'.

share|improve this answer
-1 Element.get(attribute_name, False) will never return True – John Machin Jun 21 '11 at 11:30
Agree, the final answer will be xsinil = dataFact.get('......') in ('true', '1') – rds Jun 21 '11 at 12:21
@rds: So unaccept this answer and accept mine. – John Machin Jun 21 '11 at 20:03

The second arg of Element.get() is almost irrelevant -- just don't use True.

All that you need is:

xsinil = dataFact.get('......') in ('true', '1')
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.