Home
last modified time | relevance | path

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

/external/python/cpython2/Doc/library/
Dtypes.rst22 def delete(mylist, item):
24 del mylist[item]
26 mylist.remove(item)
33 def delete(mylist, item):
35 del mylist[item]
37 mylist.remove(item)
/external/python/cpython2/Lib/test/
Dtest_trace.py75 mylist = [traced_doubler(i) for i in range(k)]
76 return mylist
Dtest_descr.py3660 class mylist(list): class
3662 d = mylist()
/external/tcpdump/tests/
Dresp_1.out54 …win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 36: RESP "LPUSH" "mylist" "xxx"
64 …ack 1, win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 26: RESP "LPOP" "mylist"
94 …win 342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 36: RESP "LPUSH" "mylist" "xxx"
104 …342, options [nop,nop,TS val 2004405847 ecr 2004405847], length 43: RESP "LRANGE" "mylist" "0" "99"
114 …42, options [nop,nop,TS val 2004405847 ecr 2004405847], length 44: RESP "LRANGE" "mylist" "0" "299"
124 …42, options [nop,nop,TS val 2004405848 ecr 2004405847], length 44: RESP "LRANGE" "mylist" "0" "449"
134 …42, options [nop,nop,TS val 2004405848 ecr 2004405848], length 44: RESP "LRANGE" "mylist" "0" "599"
/external/python/cpython2/Doc/faq/
Dprogramming.rst1232 if mylist:
1233 mylist.sort()
1234 last = mylist[-1]
1235 for i in range(len(mylist)-2, -1, -1):
1236 if last == mylist[i]:
1237 del mylist[i]
1239 last = mylist[i]
1245 for x in mylist:
1247 mylist = list(d.keys())
1251 mylist = list(set(mylist))
[all …]
/external/libevent/
Devent_rpcgen.py35 def TranslateList(mylist, mydict): argument
36 return map(lambda x: x % mydict, mylist)
/external/python/cpython2/Misc/
DHISTORY3178 comparison key from the original record: mylist.sort(key=str.lower).