Hi ironpython,
Here's your Daily Digest of new issues for project "IronPython".
In today's digest:ISSUES
1. [New comment] Chaining LINQ calls fails
2. [New comment] Chaining LINQ calls fails
3. [Status update] IronPython building against SL4 (from CodePlex)
4. [Status update] Internal changeset 1645923 caused a 23% regression in
PyBench Imports
5. [New comment] Readme.html in IronPython 2.0B5 is not useful !
6. [Status update] IronPython release needs updated Silverlight directory
7. [New comment] IronPython release needs updated Silverlight directory
8. [Status update] IronPython release needs updated Silverlight directory
9. [New comment] Trivial: __add__ with buffer and str is supported
10. [New issue] PythonSha.sha.update missing overload that takes PythonBuffer
objects
11. [New issue] zlib.compress missing an overload allowing BufferObjects
--
ISSUES
1. [New comment] Chaining LINQ calls fails
http://ironpython.codeplex.com/workitem/30379
User sopelt has commented on the issue:
"Thank you for fixing this issue. Do you have an idea on when the next release
is scheduled and if the fix will be included?
I was not able to find some kind of release plan on
codeplex/github."-
2. [New comment] Chaining LINQ calls fails
http://ironpython.codeplex.com/workitem/30379
User OldWarhorse has commented on the issue:
"It's fixed. My stuff works. Thanks Dino!"-
3. [Status update] IronPython building against SL4 (from CodePlex)
http://ironpython.codeplex.com/workitem/26901
User ironpython has updated the issue:
Status has changed from Active to Closed with the following comment,
"Fixed 2.7 Beta 1 (the full public release)."-
4. [Status update] Internal changeset 1645923 caused a 23% regression in
PyBench Imports
http://ironpython.codeplex.com/workitem/26657
User jdhardy has updated the issue:
Status has changed from Active to Closed with the following comment,
"Without knowing what changeset it maps to, this has to be
closed."-
5. [New comment] Readme.html in IronPython 2.0B5 is not useful !
http://ironpython.codeplex.com/workitem/18569
User jdhardy has commented on the issue:
"This still needs to be updated for 2.7.1."-
6. [Status update] IronPython release needs updated Silverlight directory
http://ironpython.codeplex.com/workitem/26390
User jimmysch has updated the issue:
Status has changed from Active to Closed with the following comment,
"This is no longer relevant."-
7. [New comment] IronPython release needs updated Silverlight directory
http://ironpython.codeplex.com/workitem/26390
User jimmysch has commented on the issue:
"This is no longer relevant.
** Closed by jimmysch 6/20/2011 10:34 AM"-
8. [Status update] IronPython release needs updated Silverlight directory
http://ironpython.codeplex.com/workitem/26390
User jimmysch has updated the issue:
Status has changed from Closed to Proposed with the following comment,
"Actually, misunderstood. Let's keep this open"-
9. [New comment] Trivial: __add__ with buffer and str is supported
http://ironpython.codeplex.com/workitem/23702
User gramana has commented on the issue:
"As of 2.7.0.40, could not reproduce:
c:\Projects>ipy -c "print buffer('abc') + 'abc'"
abcabc"-
10. [New issue] PythonSha.sha.update missing overload that takes PythonBuffer
objects
http://ironpython.codeplex.com/workitem/30888
User gramana has proposed the issue:
"c:\Projects>"c:\Program Files\IronPython 2.7.rc1\"ipy
IronPython 2.7 DEBUG (2.7.0.40) on .NET 4.0.30319.225
Type "help", "copyright", "credits" or "license" for more information.
>>> import hashlib
>>> b = buffer('foo')
>>> h = hashlib.sha1('hello')
>>> h.update(b)
Traceback (most recent call last):
File "", line 1, in
TypeError: expected str, got buffer
c:\Projects>python
Python 2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import hashlib
>>> b = buffer('foo')
>>> h = hashlib.sha1('hello')
>>> h.update(b)
>>>"-
11. [New issue] zlib.compress missing an overload allowing BufferObjects
http://ironpython.codeplex.com/workitem/30887
User gramana has proposed the issue:
"The following test case fails:
c:\Projects>"c:\Program Files\IronPython 2.7\ipy.exe"
IronPython 2.7 DEBUG (2.7.0.40) on .NET 4.0.30319.225
Type "help", "copyright", "credits" or "license" for more information.
>>> import hashlib
>>> b = buffer('foo')
>>> h = hashlib.sha1()
>>> h.update(b)
Traceback (most recent call last):
File "", line 1, in
TypeError: expected str, got buffer
c:\Projects>python
Python 2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import hashlib
>>> b = buffer('foo')
>>> h = hashlib.sha1()
>>> h.up