Prevent Python from caching the imported modules

后端 未结 8 1701
误落风尘
误落风尘 2020-11-28 07:40

While developing a largeish project (split in several files and folders) in Python with IPython, I run into the trouble of cached imported modules.

The problem is th

8条回答
  •  野性不改
    2020-11-28 07:44

    For Python version 3.4 and above

    import importlib 
    importlib.reload() 
    from  import 
    

    Refer below documentation for details.

提交回复
热议问题