diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-06-17 21:39:46 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-06-17 21:39:46 (GMT) |
commit | bf9e966228c6faa440e1c9b5fa8c41d0be8a721b (patch) | |
tree | 030b7bea1e92aee8b286e02bd7402ce48694b2fa /PC/_msi.c | |
parent | 2ba198d2fbd8d4dd33d2c40af012d622eb03c18f (diff) | |
download | cpython-bf9e966228c6faa440e1c9b5fa8c41d0be8a721b.zip cpython-bf9e966228c6faa440e1c9b5fa8c41d0be8a721b.tar.gz cpython-bf9e966228c6faa440e1c9b5fa8c41d0be8a721b.tar.bz2 |
Return the module at the end of its init function.
"import _msi" used to raise a SystemError.
Diffstat (limited to 'PC/_msi.c')
-rw-r--r-- | PC/_msi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1065,5 +1065,5 @@ PyInit__msi(void) if (!MSIError) return NULL; PyModule_AddObject(m, "MSIError", MSIError); - return NULL; + return m; } |