I have noticed that python-defined classes don't have doc strings.
foo.py:
class foo(object):
"Test one two"
def __init__(self):
pass
>>> import foo
>>> print foo.foo.__doc__
IronPython.Objects.PythonAttributeError: type object 'foo' has no
attribute '__doc__'
at IronPython.O
Is this bug known?
In file foo.py:
import bar
At the IronPython console:
>>> import foo
[[ Giant exception stack trace ]]
>>> import foo
>>>
That is, if a module fails to import, a second attempt to import does
not throw an exception. I think this is because
Importer.LoadFr
On 5/17/05, Martin Maly <[EMAIL PROTECTED]> wrote:
> Hello,
>
> After reading Anthony's email on CPython's standard libraries I tried to
> import the libraries using IronPython to see how well IronPython does
> just importing the libraries. Out of 182 modules that I tried to import
> 116 imported