1. 21 Feb, 2015 6 commits
  2. 20 Feb, 2015 6 commits
  3. 19 Feb, 2015 13 commits
  4. 18 Feb, 2015 12 commits
  5. 17 Feb, 2015 3 commits
    • Merge pull request #10270 from bcoca/make_clean_pyc · fdb36b4e
      added cleaning pyc files
      Brian Coca committed
    • added cleaning pyc files · 24766bdf
      Brian Coca committed
    • Optimize the plugin loader. · 68e86de2
      We have been caching the paths to the plugins but before we would only
      cache the specific plugin that we were looking for.  This meant that we
      might search through all of the plugin directories before finding the
      specific module we were interested in.  The next plugin we needed we
      might again search through all the plugin directories before finding the
      plugin we wanted.
      
      This new code will cache all the potential plugins in each directory
      searched.  For a play that only uses one plugin we'll only search
      through directories until we encounter the directory that has the proper
      plugin.  For a large playbook with many plugins used we'll search
      through each directory at most once each.
      
      This should alleviate #10165
      Toshio Kuratomi committed