This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wilx
Recipients
Date 2006-08-24.09:49:37
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Hi,
I think there is a bug arraymodule.c this line:

	{"__deepcopy__",(PyCFunction)array_copy,	METH_NOARGS,
	 copy_doc},

should probably have METH_O instead of METH_NOARGS
there, since according to docs and the prototype of the
array_copy() function there is one parameter.
History
Date User Action Args
2007-08-23 14:42:21adminlinkissue1545837 messages
2007-08-23 14:42:21admincreate