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
894c7cc6
Commit
894c7cc6
authored
Nov 28, 2003
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed depricated old BTree and intSet extension modules.
parent
eb42ecf7
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
2149 deletions
+0
-2149
lib/Components/BTree/BTree.c
lib/Components/BTree/BTree.c
+0
-2076
lib/Components/BTree/IIBTree.c
lib/Components/BTree/IIBTree.c
+0
-18
lib/Components/BTree/IOBTree.c
lib/Components/BTree/IOBTree.c
+0
-16
lib/Components/BTree/OIBTree.c
lib/Components/BTree/OIBTree.c
+0
-16
lib/Components/BTree/Setup
lib/Components/BTree/Setup
+0
-7
lib/Components/BTree/intSet.h
lib/Components/BTree/intSet.h
+0
-16
No files found.
lib/Components/BTree/BTree.c
deleted
100755 → 0
View file @
eb42ecf7
This diff is collapsed.
Click to expand it.
lib/Components/BTree/IIBTree.c
deleted
100755 → 0
View file @
eb42ecf7
/*****************************************************************************
Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
This software is subject to the provisions of the Zope Public License,
Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
FOR A PARTICULAR PURPOSE
****************************************************************************/
/* $Id: IIBTree.c,v 1.8 2002/08/01 20:02:01 bwarsaw Exp $ */
#define INTKEY int
#define INTVAL int
#include "BTree.c"
lib/Components/BTree/IOBTree.c
deleted
100755 → 0
View file @
eb42ecf7
/*****************************************************************************
Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
This software is subject to the provisions of the Zope Public License,
Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
FOR A PARTICULAR PURPOSE
****************************************************************************/
/* $Id: IOBTree.c,v 1.8 2002/08/01 20:02:01 bwarsaw Exp $ */
#define INTKEY int
#include "BTree.c"
lib/Components/BTree/OIBTree.c
deleted
100755 → 0
View file @
eb42ecf7
/*****************************************************************************
Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
This software is subject to the provisions of the Zope Public License,
Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
FOR A PARTICULAR PURPOSE
****************************************************************************/
/* $Id: OIBTree.c,v 1.8 2002/08/01 20:02:01 bwarsaw Exp $ */
#define INTVAL int
#include "BTree.c"
lib/Components/BTree/Setup
deleted
100644 → 0
View file @
eb42ecf7
*shared*
BTree BTree.c -I../../Packages/BoboPOS -I../ExtensionClass/src
IIBTree IIBTree.c -I../../Packages/BoboPOS -I../ExtensionClass/src
IOBTree IOBTree.c -I../../Packages/BoboPOS -I../ExtensionClass/src
OIBTree OIBTree.c -I../../Packages/BoboPOS -I../ExtensionClass/src
intSet intSet.c -I../../Packages/BoboPOS -I../ExtensionClass/src
lib/Components/BTree/intSet.h
deleted
100644 → 0
View file @
eb42ecf7
#ifndef INTSET_H
#define INTSET_H
#define INTSET_DATA_TYPE int
typedef
struct
{
cPersistent_HEAD
int
size
,
len
;
INTSET_DATA_TYPE
*
data
;
}
intSet
;
#define INTSET(O) ((intSet*)(O))
static
PyObject
*
intSetType
=
NULL
;
#endif
/* INTSET_H */
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