Files
community.general/lib/ansible/module_utils
Toshio Kuratomi 854d47826c Fix classes that select a subclass based on platform (#17034)
When unittesting this we found that the platform selecting class
hierarchies weren't working in all cases.  If the subclass was directly
created (ie: LinuxHardware()), then it would use its inherited __new__()
to try to create itself.  The inherited __new__ would look for
subclasses and end up calling its own __new__() again.  This would
recurse endlessly.  The new code detects when we want to find a subclass
to create (when the base class is used, ie: Hardware()) vs when to
create the class itself (when the subclass is used, ie:
LinuxHardware()).
2016-08-11 13:26:17 -04:00
..
2016-04-05 11:06:17 -07:00
2016-08-09 13:16:42 -04:00
2015-04-28 09:36:42 -04:00
2016-08-08 14:15:51 -04:00
2016-02-08 19:10:04 +01:00
2016-08-10 15:16:16 -04:00
2016-08-08 11:48:47 -04:00
2016-05-18 06:18:01 -07:00
2015-11-03 09:53:18 -08:00
2016-05-14 07:51:13 -07:00