mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Added new module "array" (for now optional) defining array objects.
This commit is contained in:
1152
Modules/arraymodule.c
Normal file
1152
Modules/arraymodule.c
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user