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
c022bbec
Commit
c022bbec
authored
Jun 05, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
There's only one type of interfaces left, no need for a z3 prefix
parent
9a95db9c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
9 deletions
+3
-9
src/AccessControl/interfaces.py
src/AccessControl/interfaces.py
+1
-1
src/AccessControl/tests/testPermissionMapping.py
src/AccessControl/tests/testPermissionMapping.py
+1
-4
src/AccessControl/tests/testRole.py
src/AccessControl/tests/testRole.py
+1
-4
No files found.
src/AccessControl/interfaces.py
View file @
c022bbec
...
...
@@ -10,7 +10,7 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""AccessControl
z3
interfaces.
"""AccessControl interfaces.
$Id$
"""
...
...
src/AccessControl/tests/testPermissionMapping.py
View file @
c022bbec
...
...
@@ -3,7 +3,7 @@ import unittest
class
TestRoleManager
(
unittest
.
TestCase
):
def
test_
z3
interfaces
(
self
):
def
test_interfaces
(
self
):
from
AccessControl.interfaces
import
IPermissionMappingSupport
from
AccessControl.PermissionMapping
import
RoleManager
from
zope.interface.verify
import
verifyClass
...
...
@@ -15,6 +15,3 @@ def test_suite():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
TestRoleManager
),
))
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
src/AccessControl/tests/testRole.py
View file @
c022bbec
...
...
@@ -3,7 +3,7 @@ import unittest
class
TestRoleManager
(
unittest
.
TestCase
):
def
test_
z3
interfaces
(
self
):
def
test_interfaces
(
self
):
from
AccessControl.interfaces
import
IRoleManager
from
AccessControl.Role
import
RoleManager
from
zope.interface.verify
import
verifyClass
...
...
@@ -15,6 +15,3 @@ def test_suite():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
TestRoleManager
),
))
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
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