Initial revision

This commit is contained in:
Guido van Rossum 1990-10-13 19:23:40 +00:00
parent df79a1ee19
commit c636014c43
47 changed files with 5492 additions and 0 deletions

9
Lib/lib-old/util.py Normal file
View file

@ -0,0 +1,9 @@
# 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