Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
778983b4
Commit
778983b4
authored
Feb 19, 1993
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added new module "array" (for now optional) defining array objects.
parent
171a55bf
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1159 additions
and
0 deletions
+1159
-0
Modules/arraymodule.c
Modules/arraymodule.c
+1152
-0
Modules/config.c.in
Modules/config.c.in
+7
-0
No files found.
Modules/arraymodule.c
0 → 100644
View file @
778983b4
This diff is collapsed.
Click to expand it.
Modules/config.c.in
View file @
778983b4
...
...
@@ -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 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment