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
8f7e7543
Commit
8f7e7543
authored
Jul 31, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reorder imports
parent
c4c3b0e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
src/Products/ZCatalog/tests/test_catalog.py
src/Products/ZCatalog/tests/test_catalog.py
+9
-10
No files found.
src/Products/ZCatalog/tests/test_catalog.py
View file @
8f7e7543
...
...
@@ -21,23 +21,24 @@ Zope2.startup()
from
itertools
import
chain
import
random
import
ExtensionClass
import
OFS.Application
from
AccessControl.SecurityManagement
import
setSecurityManager
from
AccessControl.SecurityManagement
import
noSecurityManager
from
AccessControl
import
Unauthorized
from
Acquisition
import
Implicit
from
Products.ZCatalog.Catalog
import
Catalog
from
Products.ZCatalog.Catalog
import
CatalogError
from
ZODB.DB
import
DB
from
ZODB.DemoStorage
import
DemoStorage
import
transaction
import
ExtensionClass
import
OFS.Application
from
OFS.Folder
import
Folder
as
OFS_Folder
from
Products.PluginIndexes.FieldIndex.FieldIndex
import
FieldIndex
from
Products.PluginIndexes.KeywordIndex.KeywordIndex
import
KeywordIndex
from
Products.ZCTextIndex.OkapiIndex
import
OkapiIndex
from
Products.ZCTextIndex.ZCTextIndex
import
PLexicon
from
Products.ZCTextIndex.ZCTextIndex
import
ZCTextIndex
from
ZODB.DB
import
DB
from
ZODB.DemoStorage
import
DemoStorage
import
transaction
from
Products.ZCatalog.Catalog
import
Catalog
from
Products.ZCatalog.Catalog
import
CatalogError
def
createDatabase
():
...
...
@@ -58,8 +59,6 @@ def sort(iterable):
L
.
sort
()
return
L
from
OFS.Folder
import
Folder
as
OFS_Folder
class
Folder
(
OFS_Folder
):
def
__init__
(
self
,
id
):
...
...
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