Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8649099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:28:31+00:00 2026-06-12T13:28:31+00:00

I have this module, wat.py import re import types import sys hello = Hello

  • 0

I have this module, wat.py

import re
import types
import sys

hello = "Hello World"

class MyModule(types.ModuleType):
    def get_re(self):
        return re
    def get_hello(self):
        return hello


sys.modules[__name__] = MyModule('wat')

And I run this code:

>>> import wat
>>> wat.get_hello()
None
>>> wat.get_re()
None

Why does this not work?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T13:28:32+00:00Added an answer on June 12, 2026 at 1:28 pm

    It doesn’t work because you effectively deleted your module when you reassigned its entry in sys.modules. See my related question.

    To make it work, change the last line of your module to:

    _ref, sys.modules[__name__] = sys.modules[__name__], MyModule('wat')
    

    and it will work.

    BTW, you don’t have to derive your class from types.ModuleType in order to put instances of it in sys.modules[]. Entries in sys.modules don’t have to be module objects (according to Alex Martelli).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If have this module # mymodule.py import __main__ And I import it in the
I have a module like this: module Controller module LocaleModels def self.included(base) base.send :include,
in my self-defined module I have this method which will query the db and
Let's say we have code looks like this module TM def aa puts aa
Drupal 6.x I have this module that manages four different content types. For that
This is a module named XYZ. def func(x) ..... ..... if __name__==__main__: print func(sys.argv[1])
I have this code: module Helper def translates(*attributes) attributes.each do |attribute| define_method(find_by_#{attribute}) do |value|
I have this class: module App module Tools module Pollers class Kpi ... I
I have this module pattern that stores a bunch of vars. I want to
In a Python system for which I develop, we usually have this module structure.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.