[Ironpython-users] IronPython, Daily Digest 10/20/2014

2014-10-21 Thread CodePlex
Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New comment] Trivial: SyntaxError for invalid indentation gives different 
line number
2. [New comment] Ctrl-Z dosn't work right after KeyboardInterrupt
3. [Status update] Could not get dependencies for project reference 
'PythonLibrary1'
4. [Status update] Sample:  IronPython-1.0.1-Samples-WebServices - doesn't work 
for few RSS feeds
5. [New comment] test_ipyc.test_cached_types failed throwing SystemError under 
.NET 4.0 Beta
6. [New comment] "TypeError: find_module() takes exactly 2 arguments" during 
debug a script load customize DLLs
7. [New issue] ElementTree does not handle UTF-8 encoding

--

ISSUES

1. [New comment] Trivial: SyntaxError for invalid indentation gives different 
line number
http://ironpython.codeplex.com/workitem/5736
User slide_o_mix has commented on the issue:

"This is working correctly in the latest."-

2. [New comment] Ctrl-Z dosn't work right after KeyboardInterrupt
http://ironpython.codeplex.com/workitem/9135
User slide_o_mix has commented on the issue:

"This works in latest."-

3. [Status update] Could not get dependencies for project reference 
'PythonLibrary1'
http://ironpython.codeplex.com/workitem/10245
User slide_o_mix has updated the issue:
Status has changed from Active to Closed with the following comment, 

"Not enough information to reproduce."-

4. [Status update] Sample:  IronPython-1.0.1-Samples-WebServices - doesn't work 
for few RSS feeds
http://ironpython.codeplex.com/workitem/11587
User slide_o_mix has updated the issue:
Status has changed from Active to Closed with the following comment, 

"This sample is no longer valid."-

5. [New comment] test_ipyc.test_cached_types failed throwing SystemError under 
.NET 4.0 Beta
http://ironpython.codeplex.com/workitem/24509
User slide_o_mix has commented on the issue:

"I don't get the same issue with the latest code. I get the 
following:TypeError: : unsupported base type for new-style class 
Microsoft.Scripting.Actions.NamespaceTracker:IronPythonTest.BinderTest"-

6. [New comment] "TypeError: find_module() takes exactly 2 arguments" during 
debug a script load customize DLLs
http://ironpython.codeplex.com/workitem/32989
User slide_o_mix has commented on the issue:

"This works in the latest, so it seems it was fixed at some point in the 
past."-

7. [New issue] ElementTree does not handle UTF-8 encoding
http://ironpython.codeplex.com/workitem/35635
User ysitu has proposed the issue:

">>> import tempfile
>>> from xml.etree.ElementTree import ElementTree
>>> xml = '\n\n'
>>> with tempfile.TemporaryFile() as f:
... f.write(bytes(xml, 'utf-8'))  # use xml.encode('utf-8') in CPython 2.7
... f.flush()
... f.seek(0)
... tree = ElementTree(file=f)
... name = next(tree.iter()).get('name')
... print(repr(name))
... assert name == unichr(169)
...
u'\xc2\xa9'
Traceback (most recent call last):
  File "", line 8, in 
AssertionError

unichr(169) is the copyright sign "©" and is encoded in UTF-8 as b'\xc2\xa9'. 
The two-byte encoding is ignored by ElementTree and gets interpreted as two 
separate characters."
--



--
You are receiving this email because you subscribed to notifications on 
CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue 
Tracker. You can unsubscribe or change your issue notification settings on 
CodePlex.com.___
Ironpython-users mailing list
Ironpython-users@python.org
https://mail.python.org/mailman/listinfo/ironpython-users


Re: [Ironpython-users] requests hang on get or post http request

2014-10-21 Thread Daniel Fernandez
Hi Jeff,

I thought I checked in that in. I guess I lost it when I branched. Is there 
time to still check it in?

Danny

-Original Message-
From: Jeff Hardy [mailto:jdha...@gmail.com] 
Sent: Monday, October 20, 2014 4:17 PM
To: Daniel Fernandez
Cc: ironpython-users@python.org
Subject: Re: [Ironpython-users] requests hang on get or post http request

On Wed, Aug 27, 2014 at 12:03 AM, Daniel Fernandez  
wrote:
> Hi Jeff,
>
> Is this something we want to go forward with the change in the 
> PythonBinaryReader:Read
>
> if(size == 0) {
>return string.Empty;
>  }
>
> Thanks.

I had thought this was included in some other changes but it appears it was 
not. Is it still needed?

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