Home
last modified time | relevance | path

Searched refs:lstcol (Results 1 – 1 of 1) sorted by relevance

/external/scapy/scapy/
Dutils.py565 def colgen(*lstcol,**kargs): argument
568 if len(lstcol) < 2:
569 lstcol *= 2
572 for i in range(len(lstcol)):
573 for j in range(len(lstcol)):
574 for k in range(len(lstcol)):
576 … yield trans(lstcol[(i+j)%len(lstcol)],lstcol[(j+k)%len(lstcol)],lstcol[(k+i)%len(lstcol)])