Home | History | Annotate | Download | only in python2.7

Lines Matching refs:pairs

108 def replace(text, *pairs):
110 while pairs:
111 text = join(split(text, pairs[0]), pairs[1])
112 pairs = pairs[2:]