浏览代码

Add own simple salt module.

Signed-off-by: Maximilian Wilhelm <max@rfc2324.org>
Maximilian Wilhelm 8 年之前
父节点
当前提交
300eecf8d4
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      _modules/ffho.py

+ 7 - 0
_modules/ffho.py

@@ -0,0 +1,7 @@
+import re
+
+def re_replace (pattern, replacement, string):
+	return re.sub (pattern, replacement, string)
+
+def re_search (pattern, string, flags = 0):
+	return re.search (pattern, string, flags)