(x, y)
| 59 | |
| 60 | |
| 61 | def __fn(x, y): |
| 62 | ns = (None, "http://schemas.xmlsoap.org/wsdl/") |
| 63 | aty = y.get('arrayType', ns=ns) |
| 64 | if aty is None: |
| 65 | return SXAttribute(x, y) |
| 66 | else: |
| 67 | return Attribute(x, y, aty) |
| 68 | |
| 69 | # |
| 70 | # Remap <xs:attrbute/> tags to __fn() builder. |