replaced apply with direct call

This commit is contained in:
Joe Shochet 2004-06-14 18:11:52 +00:00
parent 15db33d2ff
commit 5c2abc514d
1 changed files with 1 additions and 1 deletions

View File

@ -785,7 +785,7 @@ class ClassTypeDescriptor(BaseTypeDescriptor):
indent(file, nesting+2, 'if ((len(_args) == 1) and (_args[0] == None)):\n')
indent(file, nesting+3, 'return\n')
indent(file, nesting+2, '# Otherwise, call the C constructor\n')
indent(file, nesting+2, 'apply(self.constructor, _args)\n')
indent(file, nesting+2, 'self.constructor(*_args)\n')
indent(file, nesting+2, '\n')