Hi ironpython,

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

In today's digest:ISSUES

1. [New comment] The exception message of SyntaxError is different between CPy 
and IPy
2. [New comment] NotImplementedError: buffer_info not implemented for the array 
module

----------------------------------------------

ISSUES

1. [New comment] The exception message of SyntaxError is different between CPy 
and IPy
http://ironpython.codeplex.com/workitem/23681
User slide_o_mix has commented on the issue:

"<p>Fixed in 6298f5e. The message was updated to what Python 2.7 uses, which is 
different from what is in the bug for 2.5.</p>"-----------------

2. [New comment] NotImplementedError: buffer_info not implemented for the array 
module
http://ironpython.codeplex.com/workitem/23778
User slide_o_mix has commented on the issue:

"<p>IronPython now behaves the same as CPython 2.7</p><p>```<br>IronPython 
2.9.9a0 DEBUG (2.9.0.0) on .NET 4.0.30319.34014 (32-bit)<br>Type 
&quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or 
&quot;license&quot; for more information.<br>&gt;&gt;&gt; import 
array<br>&gt;&gt;&gt; a=array.array('c', 's')<br>&gt;&gt;&gt; 
a.buffer_into()<br>Traceback (most recent call last):<br>  File 
&quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>AttributeError: 'array' 
object has no attribute 'buffer_into'<br>```</p><p>```<br>Python 2.7.6 
(default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32<br>Type 
&quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or 
&quot;license&quot; for more information.<br>&gt;&gt;&gt; import 
array<br>&gt;&gt;&gt; a=array.array('c', 's')<br>&gt;&gt;&gt; 
a.buffer_into()<br>Traceback (most recent call last):<br>  File 
&quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>AttributeError: 
'array.array' object has no attribute 'buffer_into'<br>```</p>"
----------------------------------------------



----------------------------------------------
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

Reply via email to