added some scripts used for development
authorForrest Voight <forrest@forre.st>
Sat, 20 Oct 2012 19:30:07 +0000 (15:30 -0400)
committerForrest Voight <forrest@forre.st>
Sat, 20 Oct 2012 20:00:09 +0000 (16:00 -0400)
dev/CLEAN [new file with mode: 0644]
dev/COUNT [new file with mode: 0644]
dev/TEST [new file with mode: 0644]

diff --git a/dev/CLEAN b/dev/CLEAN
new file mode 100644 (file)
index 0000000..9a3eac9
--- /dev/null
+++ b/dev/CLEAN
@@ -0,0 +1 @@
+find p2pool/ -iname '*.py' | xargs ~/pycl.py 
diff --git a/dev/COUNT b/dev/COUNT
new file mode 100644 (file)
index 0000000..04c8835
--- /dev/null
+++ b/dev/COUNT
@@ -0,0 +1 @@
+find p2pool/ -not -path 'p2pool/test/*' -path '*.py' | xargs wc | sort -n
diff --git a/dev/TEST b/dev/TEST
new file mode 100644 (file)
index 0000000..2106694
--- /dev/null
+++ b/dev/TEST
@@ -0,0 +1,5 @@
+while true ; do
+       find -iname '*.pyc' | xargs rm
+       trial p2pool
+       git checkout HEAD^
+done