PSCF v1.2
pscf/edit.py
1#!/usr/bin/env python
2
3from pscfpp.text import *
4
5editor = FileEditor()
6editor.setIsTest(False)
7
8editor.setFilter(r'Pspg_Math_Module')
9editor.setOld(r'Pspg_Math_Module')
10editor.setNew(r'Pscf_Cuda_Module')
11editor.editFiles("cuda", "*.h")
12editor.editFiles("cuda", "*.tpp")
13editor.editFiles("cuda", "*.cpp")
14editor.editFiles("cuda", "*.mod")
15
Utilities for manipulating and searching text strings.
Definition text.py:1