From 3139a881346ff7ad4326ecd296e6eeddf6c268a0 Mon Sep 17 00:00:00 2001 From: Sebastian Berg Date: Tue, 13 Dec 2022 20:30:22 +0100 Subject: MAINT: Remove two TODO notes that got outdated (#22788) The first one should have been removed in gh-22735, the second an even more random find. --- numpy/exceptions.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'numpy/exceptions.py') diff --git a/numpy/exceptions.py b/numpy/exceptions.py index d2fe9257b..73ad5ea6d 100644 --- a/numpy/exceptions.py +++ b/numpy/exceptions.py @@ -32,8 +32,6 @@ Exceptions """ -from ._utils import set_module as _set_module - __all__ = [ "ComplexWarning", "VisibleDeprecationWarning", "ModuleDeprecationWarning", "TooHardError", "AxisError", "DTypePromotionError"] @@ -46,12 +44,6 @@ if '_is_loaded' in globals(): _is_loaded = True -# TODO: One day, we should remove the _set_module here before removing them -# fully. Not doing it now, just to allow unpickling to work on older -# versions for a bit. (Module exists since NumPy 1.25.) -# This then also means that the typing stubs should be moved! - - class ComplexWarning(RuntimeWarning): """ The warning raised when casting a complex dtype to a real dtype. -- cgit v1.2.1