Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
99c014b1
Commit
99c014b1
authored
Jul 16, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change for win32
parent
5bdaed11
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
8 deletions
+14
-8
lib/Components/ExtensionClass/MultiMapping.c
lib/Components/ExtensionClass/MultiMapping.c
+7
-4
lib/Components/ExtensionClass/src/MultiMapping.c
lib/Components/ExtensionClass/src/MultiMapping.c
+7
-4
No files found.
lib/Components/ExtensionClass/MultiMapping.c
View file @
99c014b1
/*
$Id: MultiMapping.c,v 1.
5 1997/07/02 20:20:12
jim Exp $
$Id: MultiMapping.c,v 1.
6 1997/07/16 19:41:35
jim Exp $
Sample extension class program that implements multi-mapping objects.
...
...
@@ -186,7 +186,7 @@ static char MMtype__doc__[] =
;
static
PyExtensionClass
MMtype
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
PyObject_HEAD_INIT
(
NULL
)
0
,
/*ob_size*/
"MultiMapping"
,
/*tp_name*/
sizeof
(
MMobject
),
/*tp_basicsize*/
...
...
@@ -219,11 +219,11 @@ void
initMultiMapping
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
5
$"
;
char
*
rev
=
"$Revision: 1.
6
$"
;
m
=
Py_InitModule4
(
"MultiMapping"
,
MultiMapping_methods
,
"MultiMapping -- Wrap multiple mapping objects for lookup"
"
\n\n
$Id: MultiMapping.c,v 1.
5 1997/07/02 20:20:12
jim Exp $
\n
"
,
"
\n\n
$Id: MultiMapping.c,v 1.
6 1997/07/16 19:41:35
jim Exp $
\n
"
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
PyExtensionClass_Export
(
d
,
"MultiMapping"
,
MMtype
);
...
...
@@ -237,6 +237,9 @@ initMultiMapping()
/*****************************************************************************
$Log: MultiMapping.c,v $
Revision 1.6 1997/07/16 19:41:35 jim
Change for win32
Revision 1.5 1997/07/02 20:20:12 jim
Added stupid parens and other changes to make 'gcc -Wall -pedantic'
happy.
...
...
lib/Components/ExtensionClass/src/MultiMapping.c
View file @
99c014b1
/*
$Id: MultiMapping.c,v 1.
5 1997/07/02 20:20:12
jim Exp $
$Id: MultiMapping.c,v 1.
6 1997/07/16 19:41:35
jim Exp $
Sample extension class program that implements multi-mapping objects.
...
...
@@ -186,7 +186,7 @@ static char MMtype__doc__[] =
;
static
PyExtensionClass
MMtype
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
PyObject_HEAD_INIT
(
NULL
)
0
,
/*ob_size*/
"MultiMapping"
,
/*tp_name*/
sizeof
(
MMobject
),
/*tp_basicsize*/
...
...
@@ -219,11 +219,11 @@ void
initMultiMapping
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
5
$"
;
char
*
rev
=
"$Revision: 1.
6
$"
;
m
=
Py_InitModule4
(
"MultiMapping"
,
MultiMapping_methods
,
"MultiMapping -- Wrap multiple mapping objects for lookup"
"
\n\n
$Id: MultiMapping.c,v 1.
5 1997/07/02 20:20:12
jim Exp $
\n
"
,
"
\n\n
$Id: MultiMapping.c,v 1.
6 1997/07/16 19:41:35
jim Exp $
\n
"
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
PyExtensionClass_Export
(
d
,
"MultiMapping"
,
MMtype
);
...
...
@@ -237,6 +237,9 @@ initMultiMapping()
/*****************************************************************************
$Log: MultiMapping.c,v $
Revision 1.6 1997/07/16 19:41:35 jim
Change for win32
Revision 1.5 1997/07/02 20:20:12 jim
Added stupid parens and other changes to make 'gcc -Wall -pedantic'
happy.
...
...
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