[IronPython] quopri module

Sanghyeon Seo sanxiyn at gmail.com
Sat Oct 14 03:47:32 CEST 2006


CPython
>>> import quopri
>>> quopri.encodestring('=')
'=3D'

IronPython
>>> import quopri
>>> quopri.encodestring('=')
Traceback (most recent call last):
  File quopri, line unknown, in encodestring
TypeError: b2a_qp() takes exactly 4 non-keyword arguments (1 given)

Found while trying to run SOAPpy (http://pywebsvcs.sourceforge.net/).
Easy enough to workaround, but I'd rather not.

-- 
Seo Sanghyeon



More information about the Ironpython-users mailing list