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
5c7d204b
Commit
5c7d204b
authored
Feb 16, 2001
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
distutils setup script, based on script contributed by AM Kuchling
parent
e7b8f0ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
0 deletions
+79
-0
lib/Components/ExtensionClass/setup.py
lib/Components/ExtensionClass/setup.py
+79
-0
No files found.
lib/Components/ExtensionClass/setup.py
0 → 100644
View file @
5c7d204b
#!/usr/bin/env python
"""Support for Python classes implemented in C
A lightweight mechanism has been developed for making Python
extension types more class-like. Classes can be developed in an
extension language, such as C or C++, and these classes can be
treated like other python classes:
- They can be sub-classed in python,
- They provide access to method documentation strings, and
- They can be used to directly create new instances.
An example class shows how extension classes are implemented and how
they differ from extension types.
Extension classes provide additional extensions to class and
instance semantics, including:
- A protocol for accessing subobjects "in the context of" their
containers. This is used to implement custom method types
and "environmental acquisition":Acquisition.html.
- A protocol for overriding method call semantics. This is used
to implement "synchonized" classes and could be used to
implement argument type checking.
- A protocol for class initialization that supports execution of a
special '__class_init__' method after a class has been
initialized.
Extension classes illustrate how the Python class mechanism can be
extended and may provide a basis for improved or specialized class
models.
"""
# Setup file for ExtensionClass
# setup.py contributed by A.M. Kuchling <amk1@bigfoot.com>
from
distutils.core
import
setup
from
distutils.extension
import
Extension
ExtensionClass
=
Extension
(
name
=
'ExtensionClass'
,
sources
=
[
'src/ExtensionClass.c'
])
Acquisition
=
Extension
(
name
=
'Acquisition'
,
sources
=
[
'src/Acquisition.c'
])
MethodObject
=
Extension
(
name
=
'MethodObject'
,
sources
=
[
'src/MethodObject.c'
])
Missing
=
Extension
(
name
=
'Missing'
,
sources
=
[
'src/Missing.c'
])
MultiMapping
=
Extension
(
name
=
'MultiMapping'
,
sources
=
[
'src/MultiMapping.c'
])
Record
=
Extension
(
name
=
'Record'
,
sources
=
[
'src/Record.c'
])
Sync
=
Extension
(
name
=
'Sync'
,
sources
=
[
'src/Sync.c'
])
ThreadLock
=
Extension
(
name
=
'ThreadLock'
,
sources
=
[
'src/ThreadLock.c'
])
setup
(
name
=
"ExtensionClass"
,
version
=
"1.3"
,
description
=
"Support for Python classes implemented in C"
,
maintainer
=
"Digital Creations"
,
maintainer_email
=
"zodb-dev@zope.org"
,
url
=
"http://www.digicool.com/releases/ExtensionClass/"
,
ext_modules
=
[
ExtensionClass
,
Acquisition
,
MethodObject
,
Missing
,
MultiMapping
,
Sync
,
ThreadLock
,
Record
],
headers
=
[
"src/ExtensionClass.h"
],
py_modules
=
[
"src/Xaq"
],
long_description
=
__doc__
)
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