Hi ironpython,

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

In today's digest:ISSUES

1. [New issue] zlib fails to compress an empty string
2. [New comment] binascii.b2a_qp is present but throws NotImplemented breaking 
quopri standard module.
3. [New comment] Remove obsolete APIs after IronPython 2.6 ships
4. [New comment] "from System.Net import *" throws "SystemError: Object 
reference not set to an instance of an object"
5. [New comment] CPython's test_fileio.py broken under IPy
6. [New comment] Implement zipimport module
7. [New comment] Implement zipimport module

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

ISSUES

1. [New issue] zlib fails to compress an empty string
http://ironpython.codeplex.com/workitem/31976
User slide_o_mix has proposed the issue:

"Error in IronPython:

Traceback (most recent call last):
  File "C:\Users\acearl\Desktop\test.py", line 11, in <module>
  File "C:\Users\acearl\Code\IronLanguagesMain\External.LCA_RESTRICTED\Languages
\IronPython\27\Lib\zipfile.py", line 1094, in writestr
zlib.error: Error -3 while compressing: buffer error

CPython does not output an error and successfully creates the zip file.

Code to reproduce:

import sys
import zipimport, time
from zipfile import *

z = ZipFile('foo.zip', 'w')
zinfo = ZipInfo('foo.py', time.localtime())
zinfo.compress_type = ZIP_DEFLATED
z.writestr(zinfo, '')"-----------------

2. [New comment] binascii.b2a_qp is present but throws NotImplemented breaking 
quopri standard module.
http://ironpython.codeplex.com/workitem/4928
User slide_o_mix has commented on the issue:

"I get a different error on the latest trunk: 

TypeError: b2a_qp() got an unexpected keyword argument 
'header'"-----------------

3. [New comment] Remove obsolete APIs after IronPython 2.6 ships
http://ironpython.codeplex.com/workitem/20775
User slide_o_mix has commented on the issue:

"Do you have a list of those API's that can be removed?"-----------------

4. [New comment] "from System.Net import *" throws "SystemError: Object 
reference not set to an instance of an object"
http://ironpython.codeplex.com/workitem/25806
User slide_o_mix has commented on the issue:

"I don't see a modules.misc file in the source tree, is this available 
somewhere else?"-----------------

5. [New comment] CPython's test_fileio.py broken under IPy
http://ironpython.codeplex.com/workitem/24686
User slide_o_mix has commented on the issue:

"Added check for sys.platform != "cli" in test_fileio.py, will merge test 
file."-----------------

6. [New comment] Implement zipimport module
http://ironpython.codeplex.com/workitem/391
User slide_o_mix has commented on the issue:

"Implemented in https://github.com/IronLanguages/main/pull/49"-----------------

7. [New comment] Implement zipimport module
http://ironpython.codeplex.com/workitem/391
User jdhardy has commented on the issue:

"Fixed in 9c479d1/1d6ffca."
----------------------------------------------



----------------------------------------------
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
http://mail.python.org/mailman/listinfo/ironpython-users

Reply via email to