[Ironpython-users] IronPython, Daily Digest 2/20/2013

CodePlex no_reply at codeplex.com
Thu Feb 21 09:22:25 CET 2013


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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20130221/fa4585cf/attachment.html>


More information about the Ironpython-users mailing list