From b33c7213c79c36af4fdd388f1cdbe6001bfcb9e2 2022-09-10 05:22:55 From: nouman <55525217+noumxn@users.noreply.github.com> Date: 2022-09-10 05:22:55 Subject: [PATCH] Update autoreload.py Fixes ipython#13651 --- diff --git a/IPython/extensions/autoreload.py b/IPython/extensions/autoreload.py index a0a8c27..f485ac3 100644 --- a/IPython/extensions/autoreload.py +++ b/IPython/extensions/autoreload.py @@ -95,6 +95,10 @@ Some of the known remaining caveats are: before it is reloaded are not upgraded. - C extension modules cannot be reloaded, and so cannot be autoreloaded. + +- While comparing Enum and Flag, the 'is' Identity Operator is used (even in the case '==' has been used (Similar to the 'None' keyword)). + +- Reloading a module, or importing the same module by a different name, creates new Enums. These may look the same, but are not. """ __skip_doctest__ = True