Skip to content

Commit

Permalink
Use ALL_CAPS for naming constants.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Jul 1, 2016
1 parent ef86d76 commit 7309342
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Persistence/tests/test_persistent.py
Expand Up @@ -22,7 +22,7 @@
from persistent.picklecache import PickleCache
from persistent.TimeStamp import TimeStamp

is_pure = 'PURE_PYTHON' in os.environ
IS_PURE = 'PURE_PYTHON' in os.environ


def p64(v):
Expand Down Expand Up @@ -110,7 +110,7 @@ def test_oid_jar_attrs(self):

self.jar.add(obj)

if not is_pure:
if not IS_PURE:
# Can change oid of cache object since persistent 4.0.8
del obj._p_oid
obj._p_oid = 12
Expand Down

0 comments on commit 7309342

Please sign in to comment.