]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
doc: TODO, copyright, version number regex, etc.
authorzooko <zooko@zooko.com>
Fri, 18 Jan 2008 14:51:45 +0000 (20:21 +0530)
committerzooko <zooko@zooko.com>
Fri, 18 Jan 2008 14:51:45 +0000 (20:21 +0530)
darcs-hash:55926cf15daba95484943746445f28e25cad9910

zfec/TODO
zfec/setup.py
zfec/zfec/_fecmodule.c
zfec/zfec/test/test_zfec.py

index bad195140273f1ba34d9eaf18444940a60c78919..b76b8b12003dc82474729f1f80c7046f682f46a5 100644 (file)
--- a/zfec/TODO
+++ b/zfec/TODO
@@ -8,7 +8,8 @@
  * Jerasure
   ** try multiplication without a lookup table? (to save cache pressure)
  * conditional compilation to handle a printf that doesn't understand %Zu
- * try malloc() instead of alloca() (more portable, possibly better for keeping stacks aligned)
+ * try malloc() instead of alloca() (more portable, possibly better for keeping stacks aligned?)
 
  * announce on lwn, p2p-hackers
+
+ * streaming mode
index b231b1ab02e6f24c13fa671a2962571ea0824d65..26acf6e95606fbc4db67b5dc466b979b311e217a 100755 (executable)
@@ -81,13 +81,13 @@ except Exception, le:
     pass
 VERSIONFILE = "zfec/_version.py"
 verstr = "unknown"
-VSRE = re.compile("^verstr = ['\"]([^'\"]*)['\"]", re.M)
 try:
     verstrline = open(VERSIONFILE, "rt").read()
 except EnvironmentError:
     pass # Okay, there is no version file.
 else:
-    mo = VSRE.search(verstrline)
+    VSRE = r"^verstr = ['\"]([^'\"]*)['\"]"
+    mo = re.search(VSRE, verstrline, re.M)
     if mo:
         verstr = mo.group(1)
     else:
index f0d8d6da84c50491ddc4cefc21f5de0069a84643..e999bad2ebb0122d57805a8014897a2c091af6fe 100644 (file)
@@ -617,19 +617,7 @@ init_fec(void) {
     PyDict_SetItemString(module_dict, "Error", py_fec_error);
 }
 
-/**
- * zfec -- fast forward error correction library with Python interface
- * 
- * Copyright (C) 2007 Allmydata, Inc.
- * Author: Zooko Wilcox-O'Hearn
- * 
- * This file is part of zfec.
- * 
- * See README.txt for licensing information.
- */
-
 /**
  * originally inspired by fecmodule.c by the Mnet Project, especially Myers
  * Carpenter and Hauke Johannknecht
  */
-
index 1143cfc580604db9fca86749924761283083c964..fbb630eb95f1646feb7d5c0d624569b9116e133d 100755 (executable)
@@ -294,12 +294,3 @@ class Cmdline(unittest.TestCase):
 
 if __name__ == "__main__":
     unittest.main()
-
-# zfec -- fast forward error correction library with Python interface
-# 
-# Copyright (C) 2007 Allmydata, Inc.
-# Author: Zooko Wilcox-O'Hearn
-# 
-# This file is part of zfec.
-#
-# See README.txt for licensing information.