Commit 6fce7ae3 authored by Vincent Pelletier's avatar Vincent Pelletier

Simplify pseudo-constants' value.

parent 0ceb6956
......@@ -57,9 +57,9 @@ if memcache is not None:
from Products.PythonScripts.Utility import allow_class
from zLOG import LOG
MARKER = tuple()
UPDATE_ACTION = 'update'
DELETE_ACTION = 'delete'
MARKER = object()
DELETE_ACTION = 0
UPDATE_ACTION = 1
class MemcachedDict(TM):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment