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: ...@@ -57,9 +57,9 @@ if memcache is not None:
from Products.PythonScripts.Utility import allow_class from Products.PythonScripts.Utility import allow_class
from zLOG import LOG from zLOG import LOG
MARKER = tuple() MARKER = object()
UPDATE_ACTION = 'update' DELETE_ACTION = 0
DELETE_ACTION = 'delete' UPDATE_ACTION = 1
class MemcachedDict(TM): 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