<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -22,6 +22,8 @@ class builder:
   def write(self, line):
     self.document.write('%s%s' % ((self.indentation * ' '), line))
 
+_dummy = {}
+
 class element:
   def __init__(self, name, builder):
     self.name = name
@@ -35,7 +37,7 @@ class element:
   def __exit__(self, type, value, tb):
     self.builder.write('&lt;/%s&gt;\n' % self.name)
     self.builder.indentation -= 2
-  def __call__(self, value=False, **kargs):
+  def __call__(self, value=_dummy, **kargs):
     if len(kargs.keys()) &gt; 0:
       self.attributes = kargs
       self.serialized_attrs = self.serialize_attrs(kargs)
@@ -46,7 +48,7 @@ class element:
       else:
         self.builder.write('&lt;%s /&gt;\n' % self.name)
       self.builder.indentation -= 2
-    elif value != False:
+    elif value != _dummy:
       self.builder.indentation += 2
       if hasattr(self, 'attributes'):
         self.builder.write('&lt;%s %s&gt;%s&lt;/%s&gt;\n' % (self.name, self.serialized_attrs, value, self.name))
@@ -71,6 +73,7 @@ if __name__ == &quot;__main__&quot;:
       xml.name('John Doe')
     xml.id('urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6')
     with xml.entry:
+      xml[&quot;my:namespace&quot;](&quot;Hello these are namespaces!&quot;)
       xml.title('Atom-Powered Robots Run Amok')
       xml.link(None, href='http://example.org/2003/12/13/atom03')
       xml.id('urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a')
@@ -89,6 +92,7 @@ if __name__ == &quot;__main__&quot;:
   &lt;/author&gt;
   &lt;id&gt;urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6&lt;/id&gt;
   &lt;entry&gt;
+    &lt;my:namespace&gt;Hello these are namespaces!&lt;/my:namespace&gt;
     &lt;title&gt;Atom-Powered Robots Run Amok&lt;/title&gt;
     &lt;link href=&quot;http://example.org/2003/12/13/atom03&quot; /&gt;
     &lt;id&gt;urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a&lt;/id&gt;</diff>
      <filename>xmlbuilder.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c5f37e62ce474ce127c737955419e8a973b923ca</id>
    </parent>
  </parents>
  <author>
    <name>Jonas Galvez</name>
    <email>jonas@codeazur.com.br</email>
  </author>
  <url>http://github.com/galvez/gae-rest/commit/ce72997541b6050d36474fd6320346a2c767db36</url>
  <id>ce72997541b6050d36474fd6320346a2c767db36</id>
  <committed-date>2008-11-23T15:26:26-08:00</committed-date>
  <authored-date>2008-11-23T15:26:26-08:00</authored-date>
  <message>Small bug.</message>
  <tree>1c9818110280c8b336aaa2be2c4fdbc28c6bd9f8</tree>
  <committer>
    <name>Jonas Galvez</name>
    <email>jonas@codeazur.com.br</email>
  </committer>
</commit>
