*** empty log message ***

This commit is contained in:
Guido van Rossum 1993-12-17 14:23:52 +00:00
parent 3cbc16d904
commit 7565b93414
8 changed files with 51 additions and 49 deletions

View file

@ -2,16 +2,15 @@
def vec(*v):
return apply(Vec().init, v)
return apply(Vec, v)
class Vec:
def init(self, *v):
def __init__(self, *v):
self.v = []
for x in v:
self.v.append(x)
return self
def fromlist(self, v):