[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[minion-cvs] Do not mix tabs and spaces in our source files; use spa...
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv9270
Modified Files:
pycheckrc setup.py
Log Message:
Do not mix tabs and spaces in our source files; use spaces only.
Index: pycheckrc
===================================================================
RCS file: /home/minion/cvsroot/src/minion/pycheckrc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- pycheckrc 21 Nov 2002 16:55:24 -0000 1.4
+++ pycheckrc 16 Dec 2002 02:40:11 -0000 1.5
@@ -117,7 +117,7 @@
redefiningFunction = 1
# bool: check if an overriden method has the same signature
-# as base class method (__init__() methods are not checked)
+# as base class method (__init__() methods are not checked)
checkOverridenMethods = 1
# int: warnings for code complexity, max value before generating a warning
@@ -137,7 +137,7 @@
maxReferences = 20
# bool: ignore all warnings from standard library components
-# (this includes anything under the standard library, eg, site-packages)
+# (this includes anything under the standard library, eg, site-packages)
ignoreStandardLibrary = 1
@@ -198,10 +198,10 @@
checkImplicitReturns = 1
# dict: suppress warnings, key is module.class.method or module.function
-# value is a string of command line arguments (can omit -- for long args)
+# value is a string of command line arguments (can omit -- for long args)
# { 'module1': 'no-namedargs maxlines=0',
-# 'module2.my_func': 'argsused',
-# 'module3.my_class': 'no-initreturn', }
+# 'module2.my_func': 'argsused',
+# 'module3.my_class': 'no-initreturn', }
suppressions = {}
# dict: suppress warnings where keys can be regular expressions
Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- setup.py 15 Dec 2002 03:47:03 -0000 1.14
+++ setup.py 16 Dec 2002 02:40:11 -0000 1.15
@@ -28,7 +28,7 @@
# For now, we assume that openssl-0.9.7 hasn't been released. When this
# changes, we can fix this rigamarole.
openssl_inc = os.environ.get("MM_OPENSSL_INCLUDE",
- "./contrib/openssl/include")
+ "./contrib/openssl/include")
INCLUDE_DIRS=[openssl_inc]
STATIC_LIBS=['./contrib/openssl/libssl.a', './contrib/openssl/libcrypto.a']
## openssl_lib = os.environ.get("MM_OPENSSL_LIB", "./contrib/openssl")
@@ -76,8 +76,8 @@
if os.environ.get('PREFIX'):
prefix = os.path.expanduser(os.environ["PREFIX"])
pathextra = os.path.join(prefix, "lib",
- "python"+(sys.version)[:3],
- "site-packages")
+ "python"+(sys.version)[:3],
+ "site-packages")
else:
pathextra = ""