mirror of https://github.com/python/cpython
10 lines
207 B
Python
10 lines
207 B
Python
|
# Module 'util' -- some useful functions that dont fit elsewhere
|
||
|
|
||
|
# Remove an item from a list at most once
|
||
|
#
|
||
|
def remove(item, list):
|
||
|
for i in range(len(list)):
|
||
|
if list[i] = item:
|
||
|
del list[i]
|
||
|
break
|