forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix some copyrights, fix a misc test.
- Loading branch information
Michael DeHaan
committed
Aug 11, 2014
1 parent
533fb21
commit 2629cd3
Showing
7 changed files
with
25 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# (c) 2014, Michael DeHaan <[email protected]> | ||
# (c) 2014, Brian Coca, Josh Drake, et al | ||
# | ||
# This file is part of Ansible | ||
# | ||
|
@@ -14,6 +14,7 @@ | |
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
from __future__ import absolute_import | ||
|
||
import collections | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# (c) 2014, Michael DeHaan <[email protected]> | ||
# (c) 2014, Brian Coca, Josh Drake, et al | ||
# | ||
# This file is part of Ansible | ||
# | ||
|
@@ -14,6 +14,7 @@ | |
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import collections | ||
import os | ||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# (c) 2014, Michael DeHaan <[email protected]> | ||
# (c) 2014, Brian Coca, Josh Drake, et al | ||
# | ||
# This file is part of Ansible | ||
# | ||
|
@@ -15,7 +15,6 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
class CacheModule(object): | ||
|
||
def __init__(self, *args, **kwargs): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# (c) 2014, Michael DeHaan <[email protected]> | ||
# (c) 2014, Brian Coca, Josh Drake, et al | ||
# | ||
# This file is part of Ansible | ||
# | ||
|
@@ -14,9 +14,10 @@ | |
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. | ||
from __future__ import absolute_import | ||
|
||
from __future__ import absolute_import | ||
import collections | ||
# FIXME: can we store these as something else before we ship it? | ||
import cPickle | ||
import sys | ||
import time | ||
|
@@ -33,7 +34,7 @@ | |
|
||
class PickledRedis(StrictRedis): | ||
""" | ||
A subclass of StricRedis that uses the pickle module to store and load | ||
A subclass of StrictRedis that uses the pickle module to store and load | ||
representations of the provided values. | ||
""" | ||
def get(self, name): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters