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 785563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:53:59+00:00 2026-05-14T20:53:59+00:00

sorry, im sure this is asked a bunch, but i couldnt find it. in

  • 0

sorry, im sure this is asked a bunch, but i couldnt find it.

in myModule.py:

from myModule.subModule import myClass

i am working on myClass, and want to stay in my ipython session and test it. reload(myModule) doesnt re-compile myClass.

how can i do this?

  • 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-05-14T20:53:59+00:00Added an answer on May 14, 2026 at 8:53 pm

    You need to repeat your imports after reloading the “leafmost” submodule. E.g., given:

    $ mkdir myModule
    $ touch myModule/__init__.py
    $ cat >myModule/subModule.py
    class MyClass(object): kind='first'
    

    and then

    >>> from myModule.subModule import MyClass
    >>> MyClass.kind
    'first'
    

    and in another terminal

    $ cat >myModule/subModule.py
    class MyClass(object): kind='second'
    

    then…:

    >>> import sys
    >>> reload(sys.modules['myModule.subModule'])
    <module 'myModule.subModule' from 'myModule/subModule.py'>
    >>> from myModule.subModule import MyClass
    >>> MyClass.kind
    'second'
    

    You need to go via sys.modules as you don’t otherwise have a reference to the submodule, and then you need to repeat the from.

    Life is much simpler if you accept the wise advice of always importing a module, never stuff from INSIDE the module, of course – e.g., the Python session would be (with a change to the submodule before the reload):

    >>> from myModule import subModule as sm
    >>> sm.MyClass.kind
    'first'
    >>> reload(sm)
    <module 'myModule.subModule' from 'myModule/subModule.py'>
    >>> sm.MyClass.kind
    'second'
    

    If you get into the habit of using qualified names such as sm.MyClass instead of only the barename MyClass, your life will be simpler in many respects (easier reloading is just one of them;-).

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

Sidebar

Related Questions

Sorry if this has already been asked, but I just want to make sure
sorry if this question has been asked before, I searched but wasn't sure on
I did a search around and couldn't find this already asked but I'm sure
I'm sorry if this question has been asked before, but I'm not even sure
Sorry, I'm sure this is simple but I'm tired and can't figure it out.
Sorry but I am not sure how to ask this question but I am
Sorry if this question sounds a little silly, but I am not sure what
I'm sorry if this title doesn't describe the problem properly but I wasn't sure
I am sure this will have been answered but I proved unable to find
So, if this question has been asked before, I'm sorry. I'm not exactly sure

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.