Hi ironpython,

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

In today's digest:ISSUES

1. [New issue] urllib speed issues
2. [New comment] urllib speed issues

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

ISSUES

1. [New issue] urllib speed issues
http://ironpython.codeplex.com/workitem/32953
User JacksonReed has proposed the issue:

"urllib2.urlopen took 0.0937347412109 seconds to download a file, while
urllib.urlopen took 30.0861663818 seconds to fetch the same file.  The file is 
a 240kb text file."-----------------

2. [New comment] urllib speed issues
http://ironpython.codeplex.com/workitem/32953
User JacksonReed has commented on the issue:

"this isn't very clear let me poast the source that was the issue:
               resp_time= time.time()
                
                resp= urllib.urlopen(host_name+plugin_name+url)
                resp_time= time.time()-resp_time
                write_time= time.time()
                
                data = resp.read()
                write_time= time.time()-write_time
                f = open(file_disk_name, 'wb')
                f.write(data)
                
                
                
                obj = print_obj(resp_time,write_time,file_disk_name)
                G_PRINT_QUE.insert(obj)"
----------------------------------------------



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