Commit 778983b4 authored by Guido van Rossum's avatar Guido van Rossum

Added new module "array" (for now optional) defining array objects.

parent 171a55bf
This diff is collapsed.
......@@ -286,6 +286,9 @@ extern void initmpz();
#ifdef USE_MD5
extern void initmd5();
#endif
#ifdef USE_ARRAY
extern void initarray();
#endif
/* -- ADDMODULE MARKER 1 -- */
struct {
......@@ -437,6 +440,10 @@ struct {
{"md5", initmd5},
#endif
#ifdef USE_ARRAY
{"array", initarray},
#endif
/* -- ADDMODULE MARKER 2 -- */
{0, 0} /* Sentinel */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment