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
14324c7d
Commit
14324c7d
authored
Aug 26, 2002
by
Brian Lloyd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed old digicool references
parent
6a0f58d9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
36 deletions
+29
-36
lib/Components/cPickle/cPickle.c
lib/Components/cPickle/cPickle.c
+6
-9
lib/Components/cPickle/cPickle.stx
lib/Components/cPickle/cPickle.stx
+3
-5
lib/Components/cPickle/cStringIO.c
lib/Components/cPickle/cStringIO.c
+8
-11
lib/Components/cPickle/cStringIO.h
lib/Components/cPickle/cStringIO.h
+12
-11
No files found.
lib/Components/cPickle/cPickle.c
View file @
14324c7d
/*
* $Id: cPickle.c,v 1.7
4 2002/03/21 15:48:54 htrd
Exp $
* $Id: cPickle.c,v 1.7
5 2002/08/26 13:40:29 Brian
Exp $
*
* Copyright (c) 1996-1998,
Digital Creations
, Fredericksburg, VA, USA.
* Copyright (c) 1996-1998,
Zope Corporation
, Fredericksburg, VA, USA.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
...
...
@@ -16,7 +16,7 @@
* the documentation and/or other materials provided with the
* distribution.
*
* o Neither the name of
Digital Creations
nor the names of its
* o Neither the name of
Zope Corporation
nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
...
...
@@ -37,11 +37,8 @@
#
# If you have questions regarding this software, contact:
#
# Digital Creations, L.C.
# 910 Princess Ann Street
# Fredericksburge, Virginia 22401
#
# info@digicool.com
# Zope Corporation
# info@zope.com
#
# (540) 371-6909
*/
...
...
@@ -49,7 +46,7 @@
static
char
cPickle_module_documentation
[]
=
"C implementation and optimization of the Python pickle module
\n
"
"
\n
"
"$Id: cPickle.c,v 1.7
4 2002/03/21 15:48:54 htrd
Exp $
\n
"
"$Id: cPickle.c,v 1.7
5 2002/08/26 13:40:29 Brian
Exp $
\n
"
;
#include "Python.h"
...
...
lib/Components/cPickle/cPickle.stx
View file @
14324c7d
cPickle, A C Pickle Implementation
"cPickle", http://www.digicool.com/releases/cPickle/cPickle-1.0b2.tar.gz,
is a C implementation of the Python module, pickle.py, and is
"cPickle" is a C implementation of the Python module, pickle.py, and is
fully compatible with pickle: all types picklable by pickle can be
pickled using cPickle [1], and pickles generated using pickle may be
unpickled using cPickle and vice versa.
...
...
@@ -112,9 +111,8 @@ cPickle, A C Pickle Implementation
Status
The current release of cPickle is "1.0b2",
http://www.digicool.com/releases/cPickle/cPickle-1.0b2.tar.gz.
This release requires Python version 1.4 or higher.
The current release of cPickle is "1.0b2". This release requires
Python version 1.4 or higher.
This version introduces a special binary mode format for floats.
Since this could not be implemented in the python version, it is
...
...
lib/Components/cPickle/cStringIO.c
View file @
14324c7d
/*
* cStringIO.c,v 1.29 1999/06/15 14:10:27 jim Exp
*
* Copyright (c) 1996-1998,
Digital Creations
, Fredericksburg, VA, USA.
* Copyright (c) 1996-1998,
Zope Corporation
, Fredericksburg, VA, USA.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
...
...
@@ -19,19 +19,19 @@
* o All advertising materials mentioning features or use of this
* software must display the following acknowledgement:
*
* This product includes software developed by
Digital Creations
* This product includes software developed by
Zope Corporation
* and its contributors.
*
* o Neither the name of
Digital Creations
nor the names of its
* o Neither the name of
Zope Corporation
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
* THIS SOFTWARE IS PROVIDED BY
ZOPE CORPORATION
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,
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
ZOPE CORPORATION
* 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
...
...
@@ -43,11 +43,8 @@
#
# If you have questions regarding this software, contact:
#
# Digital Creations, L.C.
# 910 Princess Ann Street
# Fredericksburge, Virginia 22401
#
# info@digicool.com
# Zope Corporation
# info@zope.com
#
# (540) 371-6909
*/
...
...
lib/Components/cPickle/cStringIO.h
View file @
14324c7d
...
...
@@ -2,27 +2,27 @@
#define CSTRINGIO_INCLUDED
/*
$Id: cStringIO.h,v 1.
4 1997/12/07 14:27:00 jim
Exp $
$Id: cStringIO.h,v 1.
5 2002/08/26 13:40:29 Brian
Exp $
cStringIO C API
Copyright
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
DCL
C,
Copyright 1996
Zope Corporation, Fredericksburg, Virginia 22401
U.S.A. All
rights reserved. Copyright in this software is owned by
Z
C,
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
reserved by
Zope Corporation
and are not licensed
hereunder.
Trademarks
Digital Creations & DCLC, are trademarks of Digital Creations, L.C.
.
Zope Corporation is a trademark of Zope Corporation
.
All other trademarks are owned by their respective companies.
No Warranty
...
...
@@ -33,13 +33,14 @@
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
incorporated in new editions of the software.
Zope Corporation
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,
In no event will Zope Corporation 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
...
...
@@ -51,8 +52,8 @@
If you have questions regarding this software,
contact:
info@digicool.com
Digital Creations L.C.
Zope Corporation
info@zope.com
(540) 371-6909
...
...
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