***** Module test_numpy
test_numpy.py:3:4: E1101: Module 'numpy' has no 'float128' member (no-member)
Since astroid 2.0.0 second module extender does not work. It registers without error, but has no effect.
In earlier astroid that worked.
### Expected behavior
No linter error.
I think that both module extenders should be used by astroid.
Or the second one should overwrite the first one.
Or there could be a public API for unregistering existing extender (I wrote such a function myself, but it is really ugly).
### ``python -c "from astroid import __pkginfo__; print(__pkginfo__.version)"`` output
2.4.1
Steps to reproduce
File
brain_numpy_core_numerictypes.py
:File
.pylintrc
:x = numpy.float128(0)
***** Module test_numpy test_numpy.py:3:4: E1101: Module 'numpy' has no 'float128' member (no-member)