[Python-porting] freezing when using future

Tim eichler tim_eichler at hotmail.com
Thu Jun 18 13:16:46 CEST 2015


I am using cx freeze to bundle my python software.

running futurize my code changed from

    import urllib2

to

    from future import standard_library
    standard_library.install_aliases()

    import urllib.request, urllib.error, urllib.parse


when freezing on python2 its having problems finding the parent path of urllib.

I couldn't find much on the site in this regards so i'd like to know if there is any documentation in this area.
Otherwise i'll play around and see if i can find a nice workaround.

Kind Regards,
Tim
 		 	   		  
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-porting/attachments/20150618/ce090016/attachment.html>


More information about the Python-porting mailing list