summaryrefslogtreecommitdiff
path: root/src/zope/security/tests/test_location.py
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2022-12-23 09:27:18 +0100
committerGitHub <noreply@github.com>2022-12-23 09:27:18 +0100
commite2d9d9d49ceadb0c62ab96117ffc4dfa532819e0 (patch)
tree62e9110f084d572bf06f25115c8f1f794a8f19e9 /src/zope/security/tests/test_location.py
parent831a34f5cf3e2c4297e0da35c4f38e7cf12fac16 (diff)
downloadzope-security-e2d9d9d49ceadb0c62ab96117ffc4dfa532819e0.tar.gz
Config with c code template 831a34f5 (#91)
* Drop support for Python 2.7, 3.5, 3.6.
Diffstat (limited to 'src/zope/security/tests/test_location.py')
-rw-r--r--src/zope/security/tests/test_location.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zope/security/tests/test_location.py b/src/zope/security/tests/test_location.py
index a620605..5de73a5 100644
--- a/src/zope/security/tests/test_location.py
+++ b/src/zope/security/tests/test_location.py
@@ -28,7 +28,7 @@ class LocationSecurityProxyTests(QuietWatchingChecker,
from zope.security.checker import defineChecker
from zope.security.proxy import ProxyFactory
- class Unlocated(object):
+ class Unlocated:
a = 'a'
unlocated = Unlocated()
located = LocationProxy(unlocated)