Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zope-container
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
Boxiang Sun
zope-container
Commits
88c4e395
Commit
88c4e395
authored
Jun 03, 2010
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove CVS '6997Id$' fossils.
parent
5d6b84b1
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
1 addition
and
51 deletions
+1
-51
bootstrap.py
bootstrap.py
+0
-2
setup.py
setup.py
+0
-2
src/zope/container/_zope_container_contained.c
src/zope/container/_zope_container_contained.c
+1
-1
src/zope/container/btree.py
src/zope/container/btree.py
+0
-2
src/zope/container/constraints.py
src/zope/container/constraints.py
+0
-2
src/zope/container/contained.py
src/zope/container/contained.py
+0
-2
src/zope/container/directory.py
src/zope/container/directory.py
+0
-2
src/zope/container/find.py
src/zope/container/find.py
+0
-2
src/zope/container/folder.py
src/zope/container/folder.py
+0
-2
src/zope/container/i18n.py
src/zope/container/i18n.py
+0
-2
src/zope/container/interfaces.py
src/zope/container/interfaces.py
+0
-2
src/zope/container/ordered.py
src/zope/container/ordered.py
+0
-2
src/zope/container/sample.py
src/zope/container/sample.py
+0
-2
src/zope/container/size.py
src/zope/container/size.py
+0
-2
src/zope/container/testing.py
src/zope/container/testing.py
+0
-2
src/zope/container/tests/test_btree.py
src/zope/container/tests/test_btree.py
+0
-2
src/zope/container/tests/test_constraints.py
src/zope/container/tests/test_constraints.py
+0
-2
src/zope/container/tests/test_contained.py
src/zope/container/tests/test_contained.py
+0
-2
src/zope/container/tests/test_containertraversable.py
src/zope/container/tests/test_containertraversable.py
+0
-2
src/zope/container/tests/test_containertraverser.py
src/zope/container/tests/test_containertraverser.py
+0
-2
src/zope/container/tests/test_directory.py
src/zope/container/tests/test_directory.py
+0
-2
src/zope/container/tests/test_find.py
src/zope/container/tests/test_find.py
+0
-2
src/zope/container/tests/test_icontainer.py
src/zope/container/tests/test_icontainer.py
+0
-2
src/zope/container/tests/test_ordered.py
src/zope/container/tests/test_ordered.py
+0
-2
src/zope/container/tests/test_size.py
src/zope/container/tests/test_size.py
+0
-2
src/zope/container/traversal.py
src/zope/container/traversal.py
+0
-2
No files found.
bootstrap.py
View file @
88c4e395
...
...
@@ -16,8 +16,6 @@
Simply run this script in a directory containing a buildout.cfg.
The script accepts buildout command-line options, so you can
use the -c option to specify an alternate configuration file.
$Id$
"""
import
os
,
shutil
,
sys
,
tempfile
,
urllib2
...
...
setup.py
View file @
88c4e395
...
...
@@ -17,8 +17,6 @@
# Zope Toolkit policies as described by this documentation.
##############################################################################
"""Setup for zope.container package
$Id$
"""
import
os
from
setuptools
import
setup
,
find_packages
,
Extension
...
...
src/zope/container/_zope_container_contained.c
View file @
88c4e395
...
...
@@ -12,7 +12,7 @@
#
############################################################################*/
#define _ZOPE_CONTAINER_CONTAINED_C "
$Id$
\n"
#define _ZOPE_CONTAINER_CONTAINED_C "\n"
/* Contained Proxy Base class
...
...
src/zope/container/btree.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""This module provides a sample btree container implementation.
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/constraints.py
View file @
88c4e395
...
...
@@ -146,8 +146,6 @@
>>> checkFactory(c1, "Zbob", factory)
False
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/contained.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Classes to support implementing `IContained`
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/directory.py
View file @
88c4e395
...
...
@@ -20,8 +20,6 @@ providing a file-system representation for containers:
`Cloner`
An `IDirectoryFactory` adapter that just clones the original object.
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/find.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Find Support
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/folder.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""The standard Zope Folder.
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/i18n.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Customization of zope.i18n for the Zope application server
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/interfaces.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Container-related interfaces
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/ordered.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Ordered container implementation.
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/sample.py
View file @
88c4e395
...
...
@@ -17,8 +17,6 @@ This is primarily for testing purposes.
It might be useful as a mix-in for some classes, but many classes will
need a very different implementation.
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/size.py
View file @
88c4e395
...
...
@@ -13,8 +13,6 @@
#
##############################################################################
"""Adapters that give the size of an object.
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
src/zope/container/testing.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Unit test logic for setting up and tearing down basic infrastructure
$Id: placelesssetup.py 95341 2009-01-28 15:59:18Z wosc $
"""
from
zope
import
component
from
zope.component.testing
import
PlacelessSetup
as
CAPlacelessSetup
...
...
src/zope/container/tests/test_btree.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""BTree Container Tests
$Id$
"""
from
doctest
import
DocTestSuite
from
unittest
import
TestCase
,
main
,
makeSuite
,
TestSuite
...
...
src/zope/container/tests/test_constraints.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Container constraint tests
$Id$
"""
import
doctest
...
...
src/zope/container/tests/test_contained.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Contained Tests
$Id$
"""
import
doctest
...
...
src/zope/container/tests/test_containertraversable.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Container Traverser tests.
$Id$
"""
import
unittest
from
zope.testing.cleanup
import
CleanUp
...
...
src/zope/container/tests/test_containertraverser.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Container Traverser Tests
$Id$
"""
import
unittest
from
zope.interface
import
Interface
,
implements
...
...
src/zope/container/tests/test_directory.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""FS-based directory implementation tests for containers
$Id$
"""
import
doctest
...
...
src/zope/container/tests/test_find.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Find functionality tests
$Id$
"""
from
unittest
import
TestCase
,
main
,
makeSuite
from
zope.container.interfaces
import
IReadContainer
...
...
src/zope/container/tests/test_icontainer.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Test the IContainer interface.
$Id$
"""
from
unittest
import
TestCase
,
main
,
makeSuite
...
...
src/zope/container/tests/test_ordered.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Test the OrderedContainer.
$Id$
"""
import
unittest
from
doctest
import
DocTestSuite
...
...
src/zope/container/tests/test_size.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Test container ISized adapter.
$Id$
"""
import
unittest
...
...
src/zope/container/traversal.py
View file @
88c4e395
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
"""Traversal components for containers
$Id$
"""
__docformat__
=
'restructuredtext'
...
...
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