vote up 3 vote down star
1

Basically, I have a list like: [START, 'foo', 'bar', 'spam', eggs', END] and the START/END identifiers are necessary for later so I can compare later on. Right now, I have it set up like this:

START = object()
END = object()

This works fine, but it suffers from the problem of not working with pickling. I tried doing it the following way, but it seems like a terrible method of accomplishing this:

class START(object):pass
class END(object):pass

Could anybody share a better means of doing this? Also, the example I have set up above is just an oversimplification of a different problem.

flag

I think it would be better to just call it a simplification rather than "an oversimplification" – Casebash Nov 5 at 1:23
7  
S: that would have been a helpful comment if you had included some explanation of one of the "far, far better" ways. As it is, it just seems crabby and condescending. – Ned Batchelder Nov 5 at 2:09
4  
When I needed a sentinel value, it was to provide an object you could pass to a function that indicated a "wildcard" value. The function was supposed to treat the wildcard value specially, no matter where or how many times it appeared in the input. I'll agree that with good containers you won't often need sentinels to mark beginning or end of data, but there will always be sentinels used for "out of band" flags. As an example, many Python functions use None as a sort of sentinel value; when you pass None it detects this special case and provides a default value of some sort. – steveha Nov 5 at 3:52
1  
@steveha: "out of band" and "sentinel" don't match up well in my mind, and don't match this question very well at all. "out of band" usually means a class hierarchy with "in band" in one part of the hierarchy and "out of band" as a disjoint subclass from the "in band" stuff. But that doesn't help with this question, which is -- I think -- doing something simple in a far too complex manner. – S.Lott Nov 5 at 11:16
1  
@S.Lott: we don't really know what the actual code is doing; he might have a good reason for wanting some out-of-band value. (Perhaps you don't like my use of that phrase; I'll accept some other if it makes you happier. But clearly any sentinel cannot appear in the data it terminates, so you have a subclass, "data which can appear in the list", and a larger class, that subclass plus any sentinels. Does this not meet your definition?) In any event, you have effectively communicated your displeasure with his example, and either he has a good reason, or he now has a chance to rethink things. – steveha Nov 6 at 7:39
show 2 more comments

5 Answers

vote up 6 vote down check

If you want an object that's guaranteed to be unique and can also be guaranteed to get restored to exactly the same identify if pickled and unpickled right back, top-level functions, classes, class instances, and if you care about is rather than == also lists (and other mutables), are all fine. I.e., any of:

# work for == as well as is
class START(object): pass
def START(): pass
class Whatever(object): pass
START = Whatever()

# if you don't care for "accidental" == and only check with `is`
START = []
START = {}
START = set()

None of these is terrible, none has any special advantage (depending if you care about == or just is). Probably def wins by dint of generality, conciseness, and lighter weight.

link|flag
vote up 2 vote down

You can define a Symbol class for handling START and END.

class Symbol:
    def __init__(self, value):
        self.value = value

    def __eq__(self, other):
        return isinstance(other, Symbol) and other.value == self.value

    def __repr__(self):
        return "<sym: %r>" % self.value

    def __str__(self):
        return str(self.value)

START = Symbol("START")
END = Symbol("END")

# test pickle
import pickle
assert START == pickle.loads(pickle.dumps(START))
assert END == pickle.loads(pickle.dumps(END))
link|flag
I was actually doing it this way for a while. – Evan Fosmark Nov 5 at 23:30
Then why do you want to switch to some other approach? In fact some other languages have built-in support for symbols. In Ruby, you can write :start and :end for start and stop symbols. – Anand Chitipothu Nov 6 at 7:13
In Python, string are intended to be used as symbols. Except sometimes we also want to use strings, so we need these other approaches – Casebash Nov 8 at 0:30
vote up 1 vote down

Actually, I like your solution.

A while back I was hacking on a Python module, and I wanted to have a special magical value that could not appear anywhere else. I spent some time thinking about it and the best I came up with is the same trick you used: declare a class, and use the class object as the special magical value.

When you are checking for the sentinel, you should of course use the is operator, for object identity:

for x in my_list:
    if x is START:
        # handle start of list
    elif x is END:
        # handle end of list
    else:
        # handle item from list
link|flag
If you declare your own class == will only check identity by default – Casebash Nov 5 at 1:30
3  
True, but I wouldn't recommend it. If you write == when you really mean is, you aren't clearly expressing your intent. And I'm not sure how likely it is, but it is possible someone could write a class whose __cmp__() method returns 0 when it compares to your sentinel class. (I just wrote one as a proof of concept...) If you use is you know exactly what it will do. – steveha Nov 5 at 3:02
vote up 1 vote down

If your list didn't have strings, I'd just use "start", "end" as Python makes the comparison O(1) due to interning.

If you do need strings, but not tuples, the complete cheapskate method is:

[("START",), 'foo', 'bar', 'spam', eggs', ("END",)]

Ps. I was sure your list was numbers before, not strings, but I can't see any revisions so I must have imagined it

link|flag
vote up -1 vote down

I think maybe this would be easier to answer if you were more explicit about what you need this for, but my inclination if faced with a problem like this would be something like:

>>> START = os.urandom(16).encode('hex')
>>> END = os.urandom(16).encode('hex')

Pros of this approach, as I'm seeing it

  • Your markers are strings (can pickle or otherwise easily serialize, eg to JSON or a DB, without any special effort)
  • Very unlikely to collide either accidentally or on purpose
  • Will serialize and deserialize to identical values, even across process restarts, which (I think) would not be the case for object() or an empty class.

Cons(?)

  • Each time they are newly chosen they will be completely different. (This being good or bad depends on details you have not provided, I would think).
link|flag
Sorry, but this doesn't work if I pickle the result and open it up in a separate process since now each one is different. – Evan Fosmark Nov 5 at 1:28
I really don't like this solution (I know the chance of collision is small, but if it happens you are really stuffed!), but you did list the limitations, so I am resisting my urge to downvote – Casebash Nov 5 at 1:36
@Casebash Does 1/2^64 seem an unreasonably high probability to you, or do you have reason to believe /dev/*random is broken? – Jack Lloyd Nov 6 at 13:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.