test/test_res.html
doc/src/commands/apidoc*
.idea
-.spyderproject
-__all__ = ['src', 'commands', ]
\ No newline at end of file
+__all__ = ['src', 'commands', "test", "unittestpy", ]
\ No newline at end of file
config.__save__(aStream, indent)
def getStrConfigStd(config):
- """set string as saveConfigStd,
- as file .pyconf"""
+ """set string as saveConfigStd, as file .pyconf"""
outStream = OutStream()
saveConfigStd(config, outStream)
return outStream.value
def getStrConfigDbg(config):
- """set string as saveConfigDbg,
- as (path expression evaluation) for debug"""
+ """
+ set string as saveConfigDbg,
+ as (path expression evaluation) for debug
+ """
outStream = OutStream()
saveConfigDbg(config, outStream)
return outStream.value
def filterList2(self, aStr):
"""filter a list as 'KERNEL,YACS,etc.'"""
aList = aStr.strip().split(",")
+ # fix list leading ',' as ',KERNEL,...'
+ aList = [i for i in aList if i != ""]
return aList
| Usage: see file ../sat
"""
+import sys
+
_KOSYS = 1 # avoid import src
# Compatibility python 2/3 for input function
sys.exit(_KOSYS)
import os
-import sys
import re
import tempfile
import imp
--- /dev/null
+theses tests from sat5.0 are obsolete