Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New issue] KeyError on import * from module with __all__

----------------------------------------------

ISSUES

1. [New issue] KeyError on import * from module with __all__
http://ironpython.codeplex.com/workitem/33793
User creinke has proposed the issue:

"Behavior differs from Python.

```
>python test.py
Yay!
```
```
>ipy test.py
Traceback (most recent call last):
  File "test.py", line 1, in 
KeyError: bar
```

The code to reproduce the issue is attached, and it is trivial:

# test.py
```
from foo import *
```

# foo/__init__.py
```
__all__ = [ "bar" ]
```

# foo/bar.py
```
print "Yay!"
```"
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on 
CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue 
Tracker. You can unsubscribe or change your issue notification settings on 
CodePlex.com.
_______________________________________________
Ironpython-users mailing list
[email protected]
http://mail.python.org/mailman/listinfo/ironpython-users

Reply via email to