diff options
author | Patrick Simianer <p@simianer.de> | 2014-06-14 16:46:27 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-06-14 16:46:27 +0200 |
commit | 26c490f404731d053a6205719b6246502c07b449 (patch) | |
tree | 3aa721098f1251dfbf2249ecd2736434c13b1d48 /hadoop/cacheArchive/my_module |
init
Diffstat (limited to 'hadoop/cacheArchive/my_module')
-rw-r--r-- | hadoop/cacheArchive/my_module/__init__.py | 0 | ||||
-rw-r--r-- | hadoop/cacheArchive/my_module/mod_a.py | 3 | ||||
-rw-r--r-- | hadoop/cacheArchive/my_module/mod_b.py | 3 |
3 files changed, 6 insertions, 0 deletions
diff --git a/hadoop/cacheArchive/my_module/__init__.py b/hadoop/cacheArchive/my_module/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/hadoop/cacheArchive/my_module/__init__.py diff --git a/hadoop/cacheArchive/my_module/mod_a.py b/hadoop/cacheArchive/my_module/mod_a.py new file mode 100644 index 0000000..ab65e6e --- /dev/null +++ b/hadoop/cacheArchive/my_module/mod_a.py @@ -0,0 +1,3 @@ +def bla(a): + print a.strip() + diff --git a/hadoop/cacheArchive/my_module/mod_b.py b/hadoop/cacheArchive/my_module/mod_b.py new file mode 100644 index 0000000..d684220 --- /dev/null +++ b/hadoop/cacheArchive/my_module/mod_b.py @@ -0,0 +1,3 @@ +def blubb(a): + print a.strip() + |