Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
261cbb2165d4ad07d7f026c2ca02a6b819bfd518
/
.
/
Lib
/
util.py
blob: dc67686a3272037747828a419fee1cbc264c8bcf [
file
] [
log
] [
blame
]
# 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