mirror of
https://github.com/python/cpython.git
synced 2024-11-24 17:47:13 +01:00
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
|