<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 issue] dict lookup of System.Int64 and long is not the same</span> <span class="anchorMarker">↓</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New issue] Add support for RIPEMD160 to hashlib</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 issue] dict lookup of System.Int64 and long is not the same</span> <a href="http://ironpython.codeplex.com/workitem/34770">view online</a></div><p>User giltayar has proposed the issue:</p><p>"To reproduce:<br />
<pre><code>>>> dct = {}
>>> import System
>>> dct[System.Int64(1110766100758387874)] = "FindMe?"
>>> dct[System.Int64(1110766100758387874)]
'FindMe!'
>>> dct[1110766100758387874]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyError: 1110766100758387874</code></pre>

Same for set:<br />
<pre><code>>>> s = set()
>>> s.add(System.Int64(1110766100758387874))
>>> System.Int64(1110766100758387874) in s
True
>>> 1110766100758387874 in s
False</code></pre>

This happens to me because I use NHibernate, where the model class is a C# class with an Id of System.Int64. Whenever I use a dict, and the Id as a key, this happens because I sometimes look for the id as a regular python number.<br />
<br />
(I am confused as to whether to submit an issue in github or here, so I submitted in both! Please excuse my n00bness)"</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New issue] Add support for RIPEMD160 to hashlib</span> <a href="http://ironpython.codeplex.com/workitem/34771">view online</a></div><p>User adal has proposed the issue:</p><p>"IronPython doesn't support the RIPEMD160 hashing algorithm.<br />
<br />
RIPEMD160 is used by Bitcoin, so this means that no Bitcoin software written in Python can run under IronPython.<br />
<br />
The following code works in CPython, but not in IronPython:<br />
<pre><code>import hashlib

hash = hashlib.new("ripemd160")
hash.update("test")
print hash.hexdigest()</code></pre>

.NET supports RIPEMD160 - <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.ripemd160.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.security.cryptography.ripemd160.aspx</a>"</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>