Hi,

Answering my own post :)

I saw version 0.3.2 Beta (r319) was yesterday made available for download.
Installed it, got another error, recalled Tips & Tricks section about namespaces, added some extra lines et voila!

import logging
from suds.client import Client
from suds.xsd.sxbasic import Import

logging.basicConfig(level=logging.INFO)

ns = 'http://schemas.xmlsoap.org/soap/encoding/'
Import.bind(ns)

url = "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2?wsdl"
client = Client(url)
# Login
auth = client.service.login('soaptester', 'soaptester')

# OK - Retrieve issue info
print client.service.getIssue(auth, 'TST-3410')

I'm a happy bunny :)

Cheers,
rev