blob: dc67686a3272037747828a419fee1cbc264c8bcf [file] [log] [blame]
Guido van Rossumc6360141990-10-13 19:23:40 +00001# Module 'util' -- some useful functions that dont fit elsewhere
2
3# Remove an item from a list at most once
4#
5def remove(item, list):
6 for i in range(len(list)):
7 if list[i] = item:
8 del list[i]
9 break