<html><head><style type="text/css" media="screen">Body{font-family: Verdana;font-size:.75em;}h4{font-size:.9em;}a{color: #3a62a6;}.digest .toc {margin-bottom: 15px; padding-bottom:8px; border-bottom: 1px solid #ccc;}.digest .tocItem {margin-bottom: 15px;}.tocItem a{color:#000;text-decoration: none;}.tocItem a:hover{color: #3a62a6;text-decoration: underline;}.topic{padding-bottom: 8px;margin-bottom: 20px; border-bottom: 1px solid #ccc;}.topicHeader{margin-bottom:10px;}.topicTitle{font-weight: bold;}.replies p{margin:0;padding:0;}.replies hr{width: 15%;text-align: left;margin: 0 auto 5px 0;border: none 0;border-top: 1px solid #ccc;height: 1px;}.reply{margin-bottom: 6px;padding-bottom: 4px;}.anchorMarker{color: #3a62a6;}.footer{color: gray;}</style></head><body><div class="digest"><p>Hi ironpython,</p><p>Here's your Daily Digest of new issues for project "<a href="http://ironpython.codeplex.com/">IronPython</a>".</p><p>In today's digest:</p><h4>ISSUES</h4><div class="toc"><div class="tocItem"><a href="#toc_issue_1">1. <span class="tocTitle">[New comment] unicode.encode() returns wrong type</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New issue] top level exception handler of the interpreter prints wrong traceback</span> <span class="anchorMarker">↓</span></a></div></div><h4>ISSUES</h4><div class="topic"><a name="toc_issue_1"></a><div class="topicHeader"><span class="topicTitle">1. [New comment] unicode.encode() returns wrong type</span> <a href="http://ironpython.codeplex.com/workitem/34842">view online</a></div><p>User paweljasinski has commented on the issue:</p><p>"<p>I have to agree there is no way to make all test cases pass, particularly escape_test is hitting the limits you mentioned.<br>However, I think it is far from "can not be used with ironpython". I have a dirty version (https://github.com/paweljasinski/tornado/compare/facebook:branch3.1...httpserver-ip-hack) which passes HTTPConnectionTest, HTTPServerRawTest, HTTPServerTest, KeepAliveTest, ManualProtocolTest.</p><p>So far I have taken the "2.7" approach and try to deal with differences individually. It possible to chose "3.x". The consequence is that all stdlib (including build-ins) must act as in 3.x. Of course one of them is encode.</p>"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New issue] top level exception handler of the interpreter prints wrong traceback</span> <a href="http://ironpython.codeplex.com/workitem/34849">view online</a></div><p>User paweljasinski has proposed the issue:</p><p>"In the following snipped, it is expected that stacktrace of the last f3() invocation includes f1, f2 and f3<br />
<pre><code>import sys
import traceback
def f1():
raise Exception("test exception")
def f2():
f1()
def f3():
f2()
def t1():
e = None
try:
f3()
except:
e = sys.exc_info()
print "-"*80
print traceback.print_exception(e[0], e[1], e[2])
return e
def t2():
e = t1()
raise e[0], e[1], e[2]
def t3():
t2()
try:
t3()
except:
print "-"*80
e = sys.exc_info()
print traceback.print_exception(e[0], e[1], e[2])
print "="*80
t3()</code></pre>
"</p></div><div class="footer"><p>You are receiving this email because you subscribed to notifications on CodePlex.</p><p>To report a bug, request a feature, or add a comment, visit <a href="http://ironpython.codeplex.com/workitem/list/basic">IronPython Issue Tracker</a>. You can <a href="http://ironpython.codeplex.com/subscriptions/workitem/project/edit">unsubscribe or change your issue notification settings</a> on CodePlex.com.</p></div></div></body></html>