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
1de3ed16
Commit
1de3ed16
authored
Nov 17, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new copyright.
parent
f9bec3db
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
486 additions
and
726 deletions
+486
-726
lib/Components/ExtensionClass/Acquisition.c
lib/Components/ExtensionClass/Acquisition.c
+44
-158
lib/Components/ExtensionClass/ExtensionClass.h
lib/Components/ExtensionClass/ExtensionClass.h
+101
-150
lib/Components/ExtensionClass/MethodObject.c
lib/Components/ExtensionClass/MethodObject.c
+48
-2
lib/Components/ExtensionClass/Missing.c
lib/Components/ExtensionClass/Missing.c
+50
-53
lib/Components/ExtensionClass/src/Acquisition.c
lib/Components/ExtensionClass/src/Acquisition.c
+44
-158
lib/Components/ExtensionClass/src/ExtensionClass.h
lib/Components/ExtensionClass/src/ExtensionClass.h
+101
-150
lib/Components/ExtensionClass/src/MethodObject.c
lib/Components/ExtensionClass/src/MethodObject.c
+48
-2
lib/Components/ExtensionClass/src/Missing.c
lib/Components/ExtensionClass/src/Missing.c
+50
-53
No files found.
lib/Components/ExtensionClass/Acquisition.c
View file @
1de3ed16
/*
/*
$Id: Acquisition.c,v 1.23 1998/11/17 19:47:59 jim Exp $
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Acquisition Wrappers -- Implementation of acquisition through wrappers
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
Copyright
met:
Copyright 1996 Digital Creations, L.C., 910 Princess Anne
o Redistributions of source code must retain the above copyright
Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
notice, this list of conditions, and the disclaimer that follows.
rights reserved. Copyright in this software is owned by DCLC,
unless otherwise indicated. Permission to use, copy and
o Redistributions in binary form must reproduce the above copyright
distribute this software is hereby granted, provided that the
notice, this list of conditions, and the following disclaimer in
above copyright notice appear in all copies and that both that
the documentation and/or other materials provided with the
copyright notice and this permission notice appear. Note that
distribution.
any product, process or technology described in this software
may be the subject of other Intellectual Property rights
o Neither the name of Digital Creations nor the names of its
reserved by Digital Creations, L.C. and are not licensed
contributors may be used to endorse or promote products derived
hereunder.
from this software without specific prior written permission.
Trademarks
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
Digital Creations & DCLC, are trademarks of Digital Creations, L.C..
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
All other trademarks are owned by their respective companies.
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
No Warranty
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
The software is provided "as is" without warranty of any kind,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
either express or implied, including, but not limited to, the
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
implied warranties of merchantability, fitness for a particular
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
purpose, or non-infringement. This software could include
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
technical inaccuracies or typographical errors. Changes are
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
periodically made to the software; these changes will be
DAMAGE.
incorporated in new editions of the software. DCLC may make
improvements and/or changes in this software at any time
$Id: Acquisition.c,v 1.24 1998/11/17 19:49:43 jim Exp $
without notice.
If you have questions regarding this software,
Limitation Of Liability
contact:
In no event will DCLC be liable for direct, indirect, special,
Digital Creations L.C.
incidental, economic, cover, or consequential damages arising
info@digicool.com
out of the use of or inability to use this software even if
advised of the possibility of such damages. Some states do not
(540) 371-6909
allow the exclusion or limitation of implied warranties or
limitation of liability for incidental or consequential
damages, so the above limitation or exclusion may not apply to
you.
If you have questions regarding this software,
contact:
Jim Fulton, jim@digicool.com
Digital Creations L.C.
(540) 371-6909
*/
*/
#include "ExtensionClass.h"
#include "ExtensionClass.h"
...
@@ -906,7 +894,7 @@ void
...
@@ -906,7 +894,7 @@ void
initAcquisition
()
initAcquisition
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
3
$"
;
char
*
rev
=
"$Revision: 1.2
4
$"
;
PURE_MIXIN_CLASS
(
Acquirer
,
PURE_MIXIN_CLASS
(
Acquirer
,
"Base class for objects that implicitly"
"Base class for objects that implicitly"
" acquire attributes from containers
\n
"
" acquire attributes from containers
\n
"
...
@@ -925,7 +913,7 @@ initAcquisition()
...
@@ -925,7 +913,7 @@ initAcquisition()
/* Create the module and add the functions */
/* Create the module and add the functions */
m
=
Py_InitModule4
(
"Acquisition"
,
methods
,
m
=
Py_InitModule4
(
"Acquisition"
,
methods
,
"Provide base classes for acquiring objects
\n\n
"
"Provide base classes for acquiring objects
\n\n
"
"$Id: Acquisition.c,v 1.2
3 1998/11/17 19:47:59
jim Exp $
\n
"
,
"$Id: Acquisition.c,v 1.2
4 1998/11/17 19:49:43
jim Exp $
\n
"
,
OBJECT
(
NULL
),
PYTHON_API_VERSION
);
OBJECT
(
NULL
),
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
d
=
PyModule_GetDict
(
m
);
...
@@ -945,105 +933,3 @@ initAcquisition()
...
@@ -945,105 +933,3 @@ initAcquisition()
CHECK_FOR_ERRORS
(
"can't initialize module Acquisition"
);
CHECK_FOR_ERRORS
(
"can't initialize module Acquisition"
);
}
}
/*****************************************************************************
$Log: Acquisition.c,v $
Revision 1.23 1998/11/17 19:47:59 jim
A typo probably caused __delitem__
calls on wrapped mapping objects to fail.
Revision 1.22 1998/05/20 17:17:17 jim
Fixed a bug in aq_acquire machinery. If aq_self was a wrapper,
then aq_acquire needed to be called on it, but that wasn't hapenning.
Revision 1.21 1998/05/07 22:10:49 jim
Added aq_inContextOf method.
Changed the way wrapping is done when getting an explicitly-wrapped
object from an implicitly-wrapped object to avoid an extra level of
wrapping.
Fixed a bug that prevented propigation of some filtering errors.
Revision 1.20 1998/04/08 14:50:51 jim
No longer acquire __roles__ explicitly.
Revision 1.19 1998/03/24 16:23:19 jim
Added parens to make gcc SHUT UP!
Revision 1.18 1998/03/24 16:21:17 jim
Fixed bad return in wrapper special.
Revision 1.17 1998/03/24 16:17:01 jim
Rearranged.
Revision 1.16 1998/03/23 20:23:35 jim
Added lots of new machinery to handle wrapping of acquired objects.
Revision 1.15 1998/01/21 19:00:48 jim
Fixed __len__ bugs and added free lists for methods and wrappers
Revision 1.14 1998/01/05 13:38:31 jim
Added special module variable, 'Acquired'. If the value of this
variable is assigned to an attribute, then the value of the attribute
will be acquired, even if it might not otherwize be acquired.
Revision 1.13 1997/11/19 13:51:14 jim
Extended compile option to implicitly acquire __roles__ to
implicitly acquire roles even for explicit acquirers.
Revision 1.12 1997/11/19 13:39:32 jim
Changed filter machinery so that wrapped objects are used as
inst and parent in filter.
Revision 1.11 1997/11/07 19:00:34 jim
Added compile option to implicitly acquire __roles__.
Revision 1.10 1997/10/28 22:09:17 jim
Added another argument to the aq_acquire filter signature.
Changed name of acquire method to aq_acquire. Explicit.acquire is
an alias.
Revision 1.9 1997/10/28 19:36:46 jim
Changed semantics is acquire method:
- Available for Implicit and Explicit,
- Does not filter names with leading underscore,
- Accepts optional 'filter' and 'extra' arguments. If 'filter'
is provided, then it must be a callable object and it is
called with five arguments:
orig -- The original (unwrapped) object
inst -- The object in which an attribute is found
name -- The attribute name
v -- The attribute value
extra -- The 'extra' value passed to 'acquire' or None.
The filter function should return 1 if the attribute should
be returned by acquire and 0 otherwise. It may also raise an
error, in which case the error is propigated.
Revision 1.8 1997/07/02 20:15:27 jim
Added stupid parens to make 'gcc -Wall -pedantic' and Barry happy.
Revision 1.6 1997/06/19 19:31:39 jim
Added ident string.
Revision 1.5 1997/06/19 19:24:21 jim
Many fixes and consolodation with Xaq.
Revision 1.3 1997/02/19 22:30:33 jim
Added $#@! missing static declaration.
Revision 1.2 1997/02/17 16:20:11 jim
Fixed bug in mix-in class declaration.
Added __version__.
*/
lib/Components/ExtensionClass/ExtensionClass.h
View file @
1de3ed16
/*
/*
$Id: ExtensionClass.h,v 1.1
1 1998/03/23 23:05:09
jim Exp $
$Id: ExtensionClass.h,v 1.1
2 1998/11/17 19:53:27
jim Exp $
Extension Class Definitions
Extension Class Definitions
Copyright
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Copyright 1996 Digital Creations, L.C., 910 Princess Anne
Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
rights reserved. Copyright in this software is owned by DCLC,
unless otherwise indicated. Permission to use, copy and
distribute this software is hereby granted, provided that the
above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear. Note that
any product, process or technology described in this software
may be the subject of other Intellectual Property rights
reserved by Digital Creations, L.C. and are not licensed
hereunder.
Trademarks
Digital Creations & DCLC, are trademarks of Digital Creations, L.C..
All other trademarks are owned by their respective companies.
No Warranty
The software is provided "as is" without warranty of any kind,
either express or implied, including, but not limited to, the
implied warranties of merchantability, fitness for a particular
purpose, or non-infringement. This software could include
technical inaccuracies or typographical errors. Changes are
periodically made to the software; these changes will be
incorporated in new editions of the software. DCLC may make
improvements and/or changes in this software at any time
without notice.
Limitation Of Liability
In no event will DCLC be liable for direct, indirect, special,
incidental, economic, cover, or consequential damages arising
out of the use of or inability to use this software even if
advised of the possibility of such damages. Some states do not
allow the exclusion or limitation of implied warranties or
limitation of liability for incidental or consequential
damages, so the above limitation or exclusion may not apply to
you.
Implementing base extension classes
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
A base extension class is implemented in much the same way that an
met:
extension type is implemented, except:
o Redistributions of source code must retain the above copyright
- The include file, 'ExtensionClass.h', must be included.
notice, this list of conditions, and the disclaimer that follows.
- The type structure is declared to be of type
o Redistributions in binary form must reproduce the above copyright
'PyExtensionClass', rather than of type 'PyTypeObject'.
notice, this list of conditions, and the following disclaimer in
the documentation and/or other materials provided with the
- The type structure has an additional member that must be defined
distribution.
after the documentation string. This extra member is a method chain
('PyMethodChain') containing a linked list of method definition
o Neither the name of Digital Creations nor the names of its
('PyMethodDef') lists. Method chains can be used to implement
contributors may be used to endorse or promote products derived
method inheritance in C. Most extensions don't use method chains,
from this software without specific prior written permission.
but simply define method lists, which are null-terminated arrays
of method definitions. A macro, 'METHOD_CHAIN' is defined in
'ExtensionClass.h' that converts a method list to a method chain.
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
(See the example below.)
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- Module functions that create new instances must be replaced by an
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
'__init__' method that initializes, but does not create storage for
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
instances.
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- The extension class must be initialized and exported to the module
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
with::
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
PyExtensionClass_Export(d,"name",type);
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
where 'name' is the module name and 'type' is the extension class
type object.
Implementing base extension classes
Attribute lookup
A base extension class is implemented in much the same way that an
extension type is implemented, except:
Attribute lookup is performed by calling the base extension class
'getattr' operation for the base extension class that includes C
- The include file, 'ExtensionClass.h', must be included.
data, or for the first base extension class, if none of the base
extension classes include C data. 'ExtensionClass.h' defines a
- The type structure is declared to be of type
macro 'Py_FindAttrString' that can be used to find an object's
'PyExtensionClass', rather than of type 'PyTypeObject'.
attributes that are stored in the object's instance dictionary or
in the object's class or base classes::
- The type structure has an additional member that must be defined
after the documentation string. This extra member is a method chain
v = Py_FindAttrString(self,name);
('PyMethodChain') containing a linked list of method definition
('PyMethodDef') lists. Method chains can be used to implement
In addition, a macro is provided that replaces 'Py_FindMethod'
method inheritance in C. Most extensions don't use method chains,
calls with logic to perform the same sort of lookup that is
but simply define method lists, which are null-terminated arrays
provided by 'Py_FindAttrString'.
of method definitions. A macro, 'METHOD_CHAIN' is defined in
'ExtensionClass.h' that converts a method list to a method chain.
Linking
(See the example below.)
The extension class mechanism was designed to be useful with
- Module functions that create new instances must be replaced by an
dynamically linked extension modules. Modules that implement
'__init__' method that initializes, but does not create storage for
extension classes do not have to be linked against an extension
instances.
class library. The macro 'PyExtensionClass_Export' imports the
'ExtensionClass' module and uses objects imported from this module
- The extension class must be initialized and exported to the module
to initialize an extension class with necessary behavior.
with::
If you have questions regarding this software,
PyExtensionClass_Export(d,"name",type);
contact:
where 'name' is the module name and 'type' is the extension class
Jim Fulton, jim@digicool.com
type object.
Digital Creations L.C.
Attribute lookup
(540) 371-6909
Attribute lookup is performed by calling the base extension class
'getattr' operation for the base extension class that includes C
$Log: ExtensionClass.h,v $
data, or for the first base extension class, if none of the base
Revision 1.11 1998/03/23 23:05:09 jim
extension classes include C data. 'ExtensionClass.h' defines a
Updated doc.
macro 'Py_FindAttrString' that can be used to find an object's
attributes that are stored in the object's instance dictionary or
Revision 1.10 1998/03/13 22:19:04 jim
in the object's class or base classes::
Added an interface for testing subclass relationships.
v = Py_FindAttrString(self,name);
Added macro to test whether ExtensionClass has been imported and
import it if it hasn't been. This is handy in cases where extension
In addition, a macro is provided that replaces 'Py_FindMethod'
modules are implemented in multiple C files.
calls with logic to perform the same sort of lookup that is
provided by 'Py_FindAttrString'.
Revision 1.9 1997/12/11 15:37:54 jim
Added EXTENSIONCLASS_BASICNEW_FLAG.
Linking
Revision 1.8 1997/07/02 20:18:20 jim
The extension class mechanism was designed to be useful with
Added stupid parens and other changes to make 'gcc -Wall -pedantic'
dynamically linked extension modules. Modules that implement
and Barry happy. Renamed PyCObject_Import to avoid conflict with
extension classes do not have to be linked against an extension
version in 1.5.
class library. The macro 'PyExtensionClass_Export' imports the
'ExtensionClass' module and uses objects imported from this module
Revision 1.7 1997/07/02 17:32:34 jim
to initialize an extension class with necessary behavior.
*** empty log message ***
If you have questions regarding this software,
Revision 1.6 1997/04/11 21:47:51 jim
contact:
Got rid of class attributes.
Added method hooks.
If you have questions regarding this software,
Revision 1.5 1997/03/08 12:44:13 jim
contact:
Moved INSTANCE_DICT macro to public interface.
Digital Creations L.C.
Revision 1.4 1997/02/17 16:26:59 jim
info@digicool.com
Many changes in access to CAPI.
(540) 371-6909
Revision 1.3 1996/12/06 17:13:17 jim
Added support for attro functions and made use of cobject to export C
interfaces.
Revision 1.2 1996/11/08 22:07:26 jim
Added parens in if to make -Wall happy.
Revision 1.1 1996/10/22 22:25:43 jim
*** empty log message ***
*/
*/
...
...
lib/Components/ExtensionClass/MethodObject.c
View file @
1de3ed16
/*
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
o Redistributions of source code must retain the above copyright
notice, this list of conditions, and the disclaimer that follows.
o Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
o Neither the name of Digital Creations nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
$Id: MethodObject.c,v 1.5 1998/11/17 19:50:20 jim Exp $
If you have questions regarding this software,
contact:
Digital Creations L.C.
info@digicool.com
(540) 371-6909
*/
#include "ExtensionClass.h"
#include "ExtensionClass.h"
...
@@ -21,7 +67,7 @@ void
...
@@ -21,7 +67,7 @@ void
initMethodObject
()
initMethodObject
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
4
$"
;
char
*
rev
=
"$Revision: 1.
5
$"
;
PURE_MIXIN_CLASS
(
Method
,
PURE_MIXIN_CLASS
(
Method
,
"Base class for objects that want to be treated as methods
\n
"
"Base class for objects that want to be treated as methods
\n
"
"
\n
"
"
\n
"
...
@@ -37,7 +83,7 @@ initMethodObject()
...
@@ -37,7 +83,7 @@ initMethodObject()
/* Create the module and add the functions */
/* Create the module and add the functions */
m
=
Py_InitModule4
(
"MethodObject"
,
methods
,
m
=
Py_InitModule4
(
"MethodObject"
,
methods
,
"Method-object mix-in class module
\n\n
"
"Method-object mix-in class module
\n\n
"
"$Id: MethodObject.c,v 1.
4 1997/06/19 19:34:41
jim Exp $
\n
"
,
"$Id: MethodObject.c,v 1.
5 1998/11/17 19:50:20
jim Exp $
\n
"
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
d
=
PyModule_GetDict
(
m
);
...
...
lib/Components/ExtensionClass/Missing.c
View file @
1de3ed16
/***********************************************************
/*
Copyright
Copyright 1997 Digital Creations, L.L.C., 910 Princess Anne
Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
rights reserved. Copyright in this software is owned by DCLC,
unless otherwise indicated. Permission to use, copy and
distribute this software is hereby granted, provided that the
above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear. Note that
any product, process or technology described in this software
may be the subject of other Intellectual Property rights
reserved by Digital Creations, L.C. and are not licensed
hereunder.
Trademarks
Digital Creations & DCLC, are trademarks of Digital Creations, L.C..
All other trademarks are owned by their respective companies.
No Warranty
The software is provided "as is" without warranty of any kind,
either express or implied, including, but not limited to, the
implied warranties of merchantability, fitness for a particular
purpose, or non-infringement. This software could include
technical inaccuracies or typographical errors. Changes are
periodically made to the software; these changes will be
incorporated in new editions of the software. DCLC may make
improvements and/or changes in this software at any time
without notice.
Limitation Of Liability
In no event will DCLC be liable for direct, indirect, special,
incidental, economic, cover, or consequential damages arising
out of the use of or inability to use this software even if
advised of the possibility of such damages. Some states do not
allow the exclusion or limitation of implied warranties or
limitation of liability for incidental or consequential
damages, so the above limitation or exclusion may not apply to
you.
If you have questions regarding this software,
contact:
Digital Creations L.L.C.
info@digicool.com
(540) 371-6909
******************************************************************/
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
o Redistributions of source code must retain the above copyright
notice, this list of conditions, and the disclaimer that follows.
o Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
o Neither the name of Digital Creations nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
$Id: Missing.c,v 1.8 1998/11/17 19:54:33 jim Exp $
If you have questions regarding this software,
contact:
Digital Creations L.C.
info@digicool.com
(540) 371-6909
*/
static
char
Missing_module_documentation
[]
=
static
char
Missing_module_documentation
[]
=
""
""
"
\n
$Id: Missing.c,v 1.
7 1997/10/03 14:43:27
jim Exp $"
"
\n
$Id: Missing.c,v 1.
8 1998/11/17 19:54:33
jim Exp $"
;
;
#include "ExtensionClass.h"
#include "ExtensionClass.h"
...
@@ -294,7 +288,7 @@ void
...
@@ -294,7 +288,7 @@ void
initMissing
()
initMissing
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
7
$"
;
char
*
rev
=
"$Revision: 1.
8
$"
;
if
(
!
((
vname
=
PyString_FromString
(
"V"
))
if
(
!
((
vname
=
PyString_FromString
(
"V"
))
&&
(
Missing_dot_Value
=
PyString_FromString
(
"Missing.Value"
))
&&
(
Missing_dot_Value
=
PyString_FromString
(
"Missing.Value"
))
...
@@ -330,6 +324,9 @@ initMissing()
...
@@ -330,6 +324,9 @@ initMissing()
Revision Log:
Revision Log:
$Log: Missing.c,v $
$Log: Missing.c,v $
Revision 1.8 1998/11/17 19:54:33 jim
new copyright.
Revision 1.7 1997/10/03 14:43:27 jim
Revision 1.7 1997/10/03 14:43:27 jim
Fixed comparison bug, again :-(
Fixed comparison bug, again :-(
...
...
lib/Components/ExtensionClass/src/Acquisition.c
View file @
1de3ed16
/*
/*
$Id: Acquisition.c,v 1.23 1998/11/17 19:47:59 jim Exp $
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Acquisition Wrappers -- Implementation of acquisition through wrappers
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
Copyright
met:
Copyright 1996 Digital Creations, L.C., 910 Princess Anne
o Redistributions of source code must retain the above copyright
Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
notice, this list of conditions, and the disclaimer that follows.
rights reserved. Copyright in this software is owned by DCLC,
unless otherwise indicated. Permission to use, copy and
o Redistributions in binary form must reproduce the above copyright
distribute this software is hereby granted, provided that the
notice, this list of conditions, and the following disclaimer in
above copyright notice appear in all copies and that both that
the documentation and/or other materials provided with the
copyright notice and this permission notice appear. Note that
distribution.
any product, process or technology described in this software
may be the subject of other Intellectual Property rights
o Neither the name of Digital Creations nor the names of its
reserved by Digital Creations, L.C. and are not licensed
contributors may be used to endorse or promote products derived
hereunder.
from this software without specific prior written permission.
Trademarks
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
Digital Creations & DCLC, are trademarks of Digital Creations, L.C..
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
All other trademarks are owned by their respective companies.
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
No Warranty
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
The software is provided "as is" without warranty of any kind,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
either express or implied, including, but not limited to, the
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
implied warranties of merchantability, fitness for a particular
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
purpose, or non-infringement. This software could include
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
technical inaccuracies or typographical errors. Changes are
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
periodically made to the software; these changes will be
DAMAGE.
incorporated in new editions of the software. DCLC may make
improvements and/or changes in this software at any time
$Id: Acquisition.c,v 1.24 1998/11/17 19:49:43 jim Exp $
without notice.
If you have questions regarding this software,
Limitation Of Liability
contact:
In no event will DCLC be liable for direct, indirect, special,
Digital Creations L.C.
incidental, economic, cover, or consequential damages arising
info@digicool.com
out of the use of or inability to use this software even if
advised of the possibility of such damages. Some states do not
(540) 371-6909
allow the exclusion or limitation of implied warranties or
limitation of liability for incidental or consequential
damages, so the above limitation or exclusion may not apply to
you.
If you have questions regarding this software,
contact:
Jim Fulton, jim@digicool.com
Digital Creations L.C.
(540) 371-6909
*/
*/
#include "ExtensionClass.h"
#include "ExtensionClass.h"
...
@@ -906,7 +894,7 @@ void
...
@@ -906,7 +894,7 @@ void
initAcquisition
()
initAcquisition
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.2
3
$"
;
char
*
rev
=
"$Revision: 1.2
4
$"
;
PURE_MIXIN_CLASS
(
Acquirer
,
PURE_MIXIN_CLASS
(
Acquirer
,
"Base class for objects that implicitly"
"Base class for objects that implicitly"
" acquire attributes from containers
\n
"
" acquire attributes from containers
\n
"
...
@@ -925,7 +913,7 @@ initAcquisition()
...
@@ -925,7 +913,7 @@ initAcquisition()
/* Create the module and add the functions */
/* Create the module and add the functions */
m
=
Py_InitModule4
(
"Acquisition"
,
methods
,
m
=
Py_InitModule4
(
"Acquisition"
,
methods
,
"Provide base classes for acquiring objects
\n\n
"
"Provide base classes for acquiring objects
\n\n
"
"$Id: Acquisition.c,v 1.2
3 1998/11/17 19:47:59
jim Exp $
\n
"
,
"$Id: Acquisition.c,v 1.2
4 1998/11/17 19:49:43
jim Exp $
\n
"
,
OBJECT
(
NULL
),
PYTHON_API_VERSION
);
OBJECT
(
NULL
),
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
d
=
PyModule_GetDict
(
m
);
...
@@ -945,105 +933,3 @@ initAcquisition()
...
@@ -945,105 +933,3 @@ initAcquisition()
CHECK_FOR_ERRORS
(
"can't initialize module Acquisition"
);
CHECK_FOR_ERRORS
(
"can't initialize module Acquisition"
);
}
}
/*****************************************************************************
$Log: Acquisition.c,v $
Revision 1.23 1998/11/17 19:47:59 jim
A typo probably caused __delitem__
calls on wrapped mapping objects to fail.
Revision 1.22 1998/05/20 17:17:17 jim
Fixed a bug in aq_acquire machinery. If aq_self was a wrapper,
then aq_acquire needed to be called on it, but that wasn't hapenning.
Revision 1.21 1998/05/07 22:10:49 jim
Added aq_inContextOf method.
Changed the way wrapping is done when getting an explicitly-wrapped
object from an implicitly-wrapped object to avoid an extra level of
wrapping.
Fixed a bug that prevented propigation of some filtering errors.
Revision 1.20 1998/04/08 14:50:51 jim
No longer acquire __roles__ explicitly.
Revision 1.19 1998/03/24 16:23:19 jim
Added parens to make gcc SHUT UP!
Revision 1.18 1998/03/24 16:21:17 jim
Fixed bad return in wrapper special.
Revision 1.17 1998/03/24 16:17:01 jim
Rearranged.
Revision 1.16 1998/03/23 20:23:35 jim
Added lots of new machinery to handle wrapping of acquired objects.
Revision 1.15 1998/01/21 19:00:48 jim
Fixed __len__ bugs and added free lists for methods and wrappers
Revision 1.14 1998/01/05 13:38:31 jim
Added special module variable, 'Acquired'. If the value of this
variable is assigned to an attribute, then the value of the attribute
will be acquired, even if it might not otherwize be acquired.
Revision 1.13 1997/11/19 13:51:14 jim
Extended compile option to implicitly acquire __roles__ to
implicitly acquire roles even for explicit acquirers.
Revision 1.12 1997/11/19 13:39:32 jim
Changed filter machinery so that wrapped objects are used as
inst and parent in filter.
Revision 1.11 1997/11/07 19:00:34 jim
Added compile option to implicitly acquire __roles__.
Revision 1.10 1997/10/28 22:09:17 jim
Added another argument to the aq_acquire filter signature.
Changed name of acquire method to aq_acquire. Explicit.acquire is
an alias.
Revision 1.9 1997/10/28 19:36:46 jim
Changed semantics is acquire method:
- Available for Implicit and Explicit,
- Does not filter names with leading underscore,
- Accepts optional 'filter' and 'extra' arguments. If 'filter'
is provided, then it must be a callable object and it is
called with five arguments:
orig -- The original (unwrapped) object
inst -- The object in which an attribute is found
name -- The attribute name
v -- The attribute value
extra -- The 'extra' value passed to 'acquire' or None.
The filter function should return 1 if the attribute should
be returned by acquire and 0 otherwise. It may also raise an
error, in which case the error is propigated.
Revision 1.8 1997/07/02 20:15:27 jim
Added stupid parens to make 'gcc -Wall -pedantic' and Barry happy.
Revision 1.6 1997/06/19 19:31:39 jim
Added ident string.
Revision 1.5 1997/06/19 19:24:21 jim
Many fixes and consolodation with Xaq.
Revision 1.3 1997/02/19 22:30:33 jim
Added $#@! missing static declaration.
Revision 1.2 1997/02/17 16:20:11 jim
Fixed bug in mix-in class declaration.
Added __version__.
*/
lib/Components/ExtensionClass/src/ExtensionClass.h
View file @
1de3ed16
/*
/*
$Id: ExtensionClass.h,v 1.1
1 1998/03/23 23:05:09
jim Exp $
$Id: ExtensionClass.h,v 1.1
2 1998/11/17 19:53:27
jim Exp $
Extension Class Definitions
Extension Class Definitions
Copyright
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Copyright 1996 Digital Creations, L.C., 910 Princess Anne
Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
rights reserved. Copyright in this software is owned by DCLC,
unless otherwise indicated. Permission to use, copy and
distribute this software is hereby granted, provided that the
above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear. Note that
any product, process or technology described in this software
may be the subject of other Intellectual Property rights
reserved by Digital Creations, L.C. and are not licensed
hereunder.
Trademarks
Digital Creations & DCLC, are trademarks of Digital Creations, L.C..
All other trademarks are owned by their respective companies.
No Warranty
The software is provided "as is" without warranty of any kind,
either express or implied, including, but not limited to, the
implied warranties of merchantability, fitness for a particular
purpose, or non-infringement. This software could include
technical inaccuracies or typographical errors. Changes are
periodically made to the software; these changes will be
incorporated in new editions of the software. DCLC may make
improvements and/or changes in this software at any time
without notice.
Limitation Of Liability
In no event will DCLC be liable for direct, indirect, special,
incidental, economic, cover, or consequential damages arising
out of the use of or inability to use this software even if
advised of the possibility of such damages. Some states do not
allow the exclusion or limitation of implied warranties or
limitation of liability for incidental or consequential
damages, so the above limitation or exclusion may not apply to
you.
Implementing base extension classes
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
A base extension class is implemented in much the same way that an
met:
extension type is implemented, except:
o Redistributions of source code must retain the above copyright
- The include file, 'ExtensionClass.h', must be included.
notice, this list of conditions, and the disclaimer that follows.
- The type structure is declared to be of type
o Redistributions in binary form must reproduce the above copyright
'PyExtensionClass', rather than of type 'PyTypeObject'.
notice, this list of conditions, and the following disclaimer in
the documentation and/or other materials provided with the
- The type structure has an additional member that must be defined
distribution.
after the documentation string. This extra member is a method chain
('PyMethodChain') containing a linked list of method definition
o Neither the name of Digital Creations nor the names of its
('PyMethodDef') lists. Method chains can be used to implement
contributors may be used to endorse or promote products derived
method inheritance in C. Most extensions don't use method chains,
from this software without specific prior written permission.
but simply define method lists, which are null-terminated arrays
of method definitions. A macro, 'METHOD_CHAIN' is defined in
'ExtensionClass.h' that converts a method list to a method chain.
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
(See the example below.)
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- Module functions that create new instances must be replaced by an
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
'__init__' method that initializes, but does not create storage for
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
instances.
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- The extension class must be initialized and exported to the module
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
with::
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
PyExtensionClass_Export(d,"name",type);
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
where 'name' is the module name and 'type' is the extension class
type object.
Implementing base extension classes
Attribute lookup
A base extension class is implemented in much the same way that an
extension type is implemented, except:
Attribute lookup is performed by calling the base extension class
'getattr' operation for the base extension class that includes C
- The include file, 'ExtensionClass.h', must be included.
data, or for the first base extension class, if none of the base
extension classes include C data. 'ExtensionClass.h' defines a
- The type structure is declared to be of type
macro 'Py_FindAttrString' that can be used to find an object's
'PyExtensionClass', rather than of type 'PyTypeObject'.
attributes that are stored in the object's instance dictionary or
in the object's class or base classes::
- The type structure has an additional member that must be defined
after the documentation string. This extra member is a method chain
v = Py_FindAttrString(self,name);
('PyMethodChain') containing a linked list of method definition
('PyMethodDef') lists. Method chains can be used to implement
In addition, a macro is provided that replaces 'Py_FindMethod'
method inheritance in C. Most extensions don't use method chains,
calls with logic to perform the same sort of lookup that is
but simply define method lists, which are null-terminated arrays
provided by 'Py_FindAttrString'.
of method definitions. A macro, 'METHOD_CHAIN' is defined in
'ExtensionClass.h' that converts a method list to a method chain.
Linking
(See the example below.)
The extension class mechanism was designed to be useful with
- Module functions that create new instances must be replaced by an
dynamically linked extension modules. Modules that implement
'__init__' method that initializes, but does not create storage for
extension classes do not have to be linked against an extension
instances.
class library. The macro 'PyExtensionClass_Export' imports the
'ExtensionClass' module and uses objects imported from this module
- The extension class must be initialized and exported to the module
to initialize an extension class with necessary behavior.
with::
If you have questions regarding this software,
PyExtensionClass_Export(d,"name",type);
contact:
where 'name' is the module name and 'type' is the extension class
Jim Fulton, jim@digicool.com
type object.
Digital Creations L.C.
Attribute lookup
(540) 371-6909
Attribute lookup is performed by calling the base extension class
'getattr' operation for the base extension class that includes C
$Log: ExtensionClass.h,v $
data, or for the first base extension class, if none of the base
Revision 1.11 1998/03/23 23:05:09 jim
extension classes include C data. 'ExtensionClass.h' defines a
Updated doc.
macro 'Py_FindAttrString' that can be used to find an object's
attributes that are stored in the object's instance dictionary or
Revision 1.10 1998/03/13 22:19:04 jim
in the object's class or base classes::
Added an interface for testing subclass relationships.
v = Py_FindAttrString(self,name);
Added macro to test whether ExtensionClass has been imported and
import it if it hasn't been. This is handy in cases where extension
In addition, a macro is provided that replaces 'Py_FindMethod'
modules are implemented in multiple C files.
calls with logic to perform the same sort of lookup that is
provided by 'Py_FindAttrString'.
Revision 1.9 1997/12/11 15:37:54 jim
Added EXTENSIONCLASS_BASICNEW_FLAG.
Linking
Revision 1.8 1997/07/02 20:18:20 jim
The extension class mechanism was designed to be useful with
Added stupid parens and other changes to make 'gcc -Wall -pedantic'
dynamically linked extension modules. Modules that implement
and Barry happy. Renamed PyCObject_Import to avoid conflict with
extension classes do not have to be linked against an extension
version in 1.5.
class library. The macro 'PyExtensionClass_Export' imports the
'ExtensionClass' module and uses objects imported from this module
Revision 1.7 1997/07/02 17:32:34 jim
to initialize an extension class with necessary behavior.
*** empty log message ***
If you have questions regarding this software,
Revision 1.6 1997/04/11 21:47:51 jim
contact:
Got rid of class attributes.
Added method hooks.
If you have questions regarding this software,
Revision 1.5 1997/03/08 12:44:13 jim
contact:
Moved INSTANCE_DICT macro to public interface.
Digital Creations L.C.
Revision 1.4 1997/02/17 16:26:59 jim
info@digicool.com
Many changes in access to CAPI.
(540) 371-6909
Revision 1.3 1996/12/06 17:13:17 jim
Added support for attro functions and made use of cobject to export C
interfaces.
Revision 1.2 1996/11/08 22:07:26 jim
Added parens in if to make -Wall happy.
Revision 1.1 1996/10/22 22:25:43 jim
*** empty log message ***
*/
*/
...
...
lib/Components/ExtensionClass/src/MethodObject.c
View file @
1de3ed16
/*
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
o Redistributions of source code must retain the above copyright
notice, this list of conditions, and the disclaimer that follows.
o Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
o Neither the name of Digital Creations nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
$Id: MethodObject.c,v 1.5 1998/11/17 19:50:20 jim Exp $
If you have questions regarding this software,
contact:
Digital Creations L.C.
info@digicool.com
(540) 371-6909
*/
#include "ExtensionClass.h"
#include "ExtensionClass.h"
...
@@ -21,7 +67,7 @@ void
...
@@ -21,7 +67,7 @@ void
initMethodObject
()
initMethodObject
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
4
$"
;
char
*
rev
=
"$Revision: 1.
5
$"
;
PURE_MIXIN_CLASS
(
Method
,
PURE_MIXIN_CLASS
(
Method
,
"Base class for objects that want to be treated as methods
\n
"
"Base class for objects that want to be treated as methods
\n
"
"
\n
"
"
\n
"
...
@@ -37,7 +83,7 @@ initMethodObject()
...
@@ -37,7 +83,7 @@ initMethodObject()
/* Create the module and add the functions */
/* Create the module and add the functions */
m
=
Py_InitModule4
(
"MethodObject"
,
methods
,
m
=
Py_InitModule4
(
"MethodObject"
,
methods
,
"Method-object mix-in class module
\n\n
"
"Method-object mix-in class module
\n\n
"
"$Id: MethodObject.c,v 1.
4 1997/06/19 19:34:41
jim Exp $
\n
"
,
"$Id: MethodObject.c,v 1.
5 1998/11/17 19:50:20
jim Exp $
\n
"
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
d
=
PyModule_GetDict
(
m
);
...
...
lib/Components/ExtensionClass/src/Missing.c
View file @
1de3ed16
/***********************************************************
/*
Copyright
Copyright 1997 Digital Creations, L.L.C., 910 Princess Anne
Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All
rights reserved. Copyright in this software is owned by DCLC,
unless otherwise indicated. Permission to use, copy and
distribute this software is hereby granted, provided that the
above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear. Note that
any product, process or technology described in this software
may be the subject of other Intellectual Property rights
reserved by Digital Creations, L.C. and are not licensed
hereunder.
Trademarks
Digital Creations & DCLC, are trademarks of Digital Creations, L.C..
All other trademarks are owned by their respective companies.
No Warranty
The software is provided "as is" without warranty of any kind,
either express or implied, including, but not limited to, the
implied warranties of merchantability, fitness for a particular
purpose, or non-infringement. This software could include
technical inaccuracies or typographical errors. Changes are
periodically made to the software; these changes will be
incorporated in new editions of the software. DCLC may make
improvements and/or changes in this software at any time
without notice.
Limitation Of Liability
In no event will DCLC be liable for direct, indirect, special,
incidental, economic, cover, or consequential damages arising
out of the use of or inability to use this software even if
advised of the possibility of such damages. Some states do not
allow the exclusion or limitation of implied warranties or
limitation of liability for incidental or consequential
damages, so the above limitation or exclusion may not apply to
you.
If you have questions regarding this software,
contact:
Digital Creations L.L.C.
info@digicool.com
(540) 371-6909
******************************************************************/
Copyright (c) 1996-1998, Digital Creations, Fredericksburg, VA, USA.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
o Redistributions of source code must retain the above copyright
notice, this list of conditions, and the disclaimer that follows.
o Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
o Neither the name of Digital Creations nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
$Id: Missing.c,v 1.8 1998/11/17 19:54:33 jim Exp $
If you have questions regarding this software,
contact:
Digital Creations L.C.
info@digicool.com
(540) 371-6909
*/
static
char
Missing_module_documentation
[]
=
static
char
Missing_module_documentation
[]
=
""
""
"
\n
$Id: Missing.c,v 1.
7 1997/10/03 14:43:27
jim Exp $"
"
\n
$Id: Missing.c,v 1.
8 1998/11/17 19:54:33
jim Exp $"
;
;
#include "ExtensionClass.h"
#include "ExtensionClass.h"
...
@@ -294,7 +288,7 @@ void
...
@@ -294,7 +288,7 @@ void
initMissing
()
initMissing
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.
7
$"
;
char
*
rev
=
"$Revision: 1.
8
$"
;
if
(
!
((
vname
=
PyString_FromString
(
"V"
))
if
(
!
((
vname
=
PyString_FromString
(
"V"
))
&&
(
Missing_dot_Value
=
PyString_FromString
(
"Missing.Value"
))
&&
(
Missing_dot_Value
=
PyString_FromString
(
"Missing.Value"
))
...
@@ -330,6 +324,9 @@ initMissing()
...
@@ -330,6 +324,9 @@ initMissing()
Revision Log:
Revision Log:
$Log: Missing.c,v $
$Log: Missing.c,v $
Revision 1.8 1998/11/17 19:54:33 jim
new copyright.
Revision 1.7 1997/10/03 14:43:27 jim
Revision 1.7 1997/10/03 14:43:27 jim
Fixed comparison bug, again :-(
Fixed comparison bug, again :-(
...
...
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