[Ironpython-users] IronPython, Daily Digest 6/20/2011

2011-06-21 Thread no_reply
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

Re: [Ironpython-users] IronPython 2.7.1 Beta coming this weekend

2011-06-21 Thread Slide
On Mon, Jun 20, 2011 at 10:50 PM, Markus Schaber
wrote:

> Hi, Jeff,
>


>
> > For embedding, I would recommend you continue what you're doing - it's
> > just just straight-up safer. It's a shame zipimport doesn't work; we
> could
> > cut the deployed size of the stdlib down significantly.
>
> Hmm. Chould zipimport be made possible using the PAL (HAL?)
> functionality of the DLR?
> 
>

That is how I was planning on approaching it, using the
PlatformAdaptationLayer, I just haven't gotten to it quite yet.


> Regards
> Markus
> ___
> Ironpython-users mailing list
> Ironpython-users@python.org
> http://mail.python.org/mailman/listinfo/ironpython-users
>

slide

-- 
slide-o-blog
http://slide-o-blog.blogspot.com/
___
Ironpython-users mailing list
Ironpython-users@python.org
http://mail.python.org/mailman/listinfo/ironpython-users


Re: [Ironpython-users] IronPython 2.7.1 Beta coming this weekend

2011-06-21 Thread Zachary Gramana

On 6/20/2011 11:53 AM, Jeff Hardy wrote:

Yes, but I think everyone chooses the same path you do
(rebuild/resign). At least, I'm pretty sure that's what Resolver One
does (I don't know of any other apps ... maybe we need a "Who's
Using?" page).



SharpDevelop does the same as well. Not to mention, that seems to be the 
standard approach for CPython application deployment.

___
Ironpython-users mailing list
Ironpython-users@python.org
http://mail.python.org/mailman/listinfo/ironpython-users


Re: [Ironpython-users] High-priority 2.7.1 issues

2011-06-21 Thread Dino Viehland
Also related to 30312 and version number issues in general - it looks like 
sys.version_info should be updated to be 2.7.1.

> -Original Message-
> From: ironpython-users-bounces+dinov=microsoft@python.org
> [mailto:ironpython-users-bounces+dinov=microsoft@python.org] On
> Behalf Of Jeff Hardy
> Sent: Monday, June 20, 2011 10:43 AM
> To: ironpython-users@python.org
> Subject: [Ironpython-users] High-priority 2.7.1 issues
> 
> Hi,
> The following issues are ones I would like fixed for 2.7.1. I'm not expecting 
> all
> of them to be, of course, but as many as possible. If there's something you
> want added to the list, or if you want one the issues assigned to you, please
> reply to this message.
> 
> 391   Implement zipimport module
> 16658 1.1.1: Creating an Int64 from a long loses precision
> 20023 Implement pyexpat module
> 26852 ssl IE gets disconnected after request, CPython doesn't.
> 4928  binascii.b2a_qp is present but throws NotImplemented breaking
> quopri standard module.
> 24735 HAPI: PythonEngine does not release ScriptScopes in RC1
> 26177 __getattr__ not called upon module import
> 26390 IronPython release needs updated Silverlight directory
> 29077 importing some modules (e.g.'import random') fails in
> IronPython Interactive window
> 2169  test_isinstance incompatibilities with CPython
> 18569 Readme.html in IronPython 2.0B5 is not useful !
> 30119 assertRaises ignores CLR exceptions
> 30274 [2.7 Beta 2] deepcopy(time(9, 0)) != time(9, 0)
> 30290 io.open after tempfile.mkstemp fails with bad file descriptor
> 30312 sys.version_info should be namedtuple (or similar)
> 30386 [2.7] set update raises NullReferenceException
> 30441 str.format() Fails to Format an Empty Array of Processes
> 30698 ctypes WINFUNCTYPE prototype fails with 'TypeError:
> WinFunctionType() takes at most 2 arguments (3 given)'
> 30805 pickling exceptions is incomplete; attributes get lost
> 
> You can access the query at http://bit.ly/ipy-271-blockers.
> 
> - Jeff
> ___
> Ironpython-users mailing list
> Ironpython-users@python.org
> http://mail.python.org/mailman/listinfo/ironpython-users

___
Ironpython-users mailing list
Ironpython-users@python.org
http://mail.python.org/mailman/listinfo/ironpython-users