Message8593

Author Arfrever
Recipients Arfrever, fwierzbicki, tkanerva, zyasoft
Date 2014-06-02.02:14:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401675299.86.0.347108915745.issue2158@psf.upfronthosting.co.za>
In-reply-to
Content
3. Multiple dot-levels incorrectly handled:

$ mkdir -p x/x/x
$ touch x/__init__.py x/x/__init__.py x/x/x/__init__.py
$ echo "from ...y import *" > x/x/x/x.py
$ echo "print(1)" > x/y.py
$ echo "print(2)" > x/x/y.py
$ echo "print(3)" > x/x/x/y.py
$ python2.7 -c 'import x.x.x.x'
1
$ jython2.7 -c 'import x.x.x.x'
3
History
Date User Action Args
2014-06-02 02:14:59Arfreversetmessageid: <1401675299.86.0.347108915745.issue2158@psf.upfronthosting.co.za>
2014-06-02 02:14:59Arfreversetrecipients: + Arfrever, fwierzbicki, zyasoft, tkanerva
2014-06-02 02:14:59Arfreverlinkissue2158 messages
2014-06-02 02:14:59Arfrevercreate