You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-a...@googlegroups.com
I have an error: "ImportError: No module named _winreg" while start my app with GAE SDK. My system is win7x86, python 2.7.9, the same problem on win8x64. But importing _winreg in python shell does not rise any errors. How can I resolve this issue??
Vinny P
unread,
Dec 24, 2014, 3:01:18 AM12/24/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-a...@googlegroups.com
On Tue, Dec 23, 2014 at 9:37 AM, Сергей Симаков <1centr...@gmail.com> wrote:
I have an error: "ImportError: No module named _winreg" while start my app with GAE SDK. My system is win7x86, python 2.7.9, the same problem on win8x64. But importing _winreg in python shell does not rise any errors. How can I resolve this issue??
_winreg is a library for accessing Windows Registry services. It's available in your Python shell since you're running on a Windows machine, but it will not be available when you upload your application to App Engine production servers - therefore, it is also not available in the development server.
Are you attempting to use winreg in your Python GAE application?