This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Py3K branch import _winreg instead of winreg
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Kozyarchuk, georg.brandl
Priority: normal Keywords:

Created on 2009-03-31 15:33 by Kozyarchuk, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg84801 - (view) Author: Maksim Kozyarchuk (Kozyarchuk) Date: 2009-03-31 15:33
Number of modules in py3k branch are importing _winreg instead of winreg.

According to fix_import.py module in libpy2to3 all _winreg imports need
to be converted to winreg.
msg84802 - (view) Author: Maksim Kozyarchuk (Kozyarchuk) Date: 2009-03-31 15:34
Looking at this now.
msg84815 - (view) Author: Maksim Kozyarchuk (Kozyarchuk) Date: 2009-03-31 15:58
Fixed, patch is on appshot.
http://codereview.appspot.com/32083/show
msg84828 - (view) Author: Maksim Kozyarchuk (Kozyarchuk) Date: 2009-03-31 16:33
Fixed Typo, and Re-Uploaded
http://codereview.appspot.com/28156/show
msg84977 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-01 04:28
Committed in r70943.
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49874
2009-04-01 04:28:56georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg84977

resolution: fixed
2009-03-31 16:33:56Kozyarchuksetmessages: + msg84828
2009-03-31 15:58:37Kozyarchuksetmessages: + msg84815
2009-03-31 15:34:15Kozyarchuksetmessages: + msg84802
2009-03-31 15:33:59Kozyarchukcreate