2015-01-19
A gotcha with Python tuples
Here's a little somewhat subtle Python syntax issue that I recently got to relearn (or be reminded of) by stubbing my toe on it. Let's start with an example, taken from our Django configuration:
# Tuple of directories to find templates TEMPLATE_DIRS = ( "/some/project/directory" )
This looks good (and used to be accepted by Django), but it's wrong.
I'm being tripped up by the critical difference in Python between
'(A)
' and '(A,)
'. While I intended to define a one-element
tuple, what I've actually done is set TEMPLATE_DIRS
to a single
string, which I happened to write in parentheses for no good reason
(as far as the Python language is concerned, at least). This is
still the case even though I've split the parenthesized expression
over three lines; Python doesn't care about how many lines I use
(or even how I indent them).
(Although it is not defined explicitly in the not a specification, this behavior is embedded in CPython; CPython silently ignores almost all newlines and whitespace inside ('s, ['s, and {'s.)
I used to be very conscious of this difference and very careful
about putting a ,
at the end of my single-element tuples. I think
I got into the habit of doing so when I at least thought that the
%
string formatting operation only took a tuple and would die if
given a single element. At some point %
started accepting bare
single elements (or at least I noticed it did) and after that I got
increasing casual about "..." % (a,)
versus "..." % (a)
(which
I soon changed to "..." % a
, of course). Somewhere along this the
reflexive add-a-comma behavior fell out of my habits and, well, I
wound up writing the example above.
(And Django accepted it for years, probably because any number of people wrote it like I did so why not be a bit friendly and magically assume things. Note that I don't blame Django for tightening up their rules here; it's probably a good idea as well as being clearly correct. Django already has enough intrinsic magic without adding more.)
As a side note, I think Python really has to do things this way. Given
that ()
is used for two purposes, '(A)
' for a plain A
value is at
least ambiguous. Adopting a heuristic that people really wanted a single
element tuple instead of a uselessly parenthesized expression strikes me
as too much magic for a predictable language, especially when you can
force the tuple behavior with a ',
'.
Why user-hostile policies are a bad thing and a mistake
One reasonable reaction to limited email retention policies being user-hostile is to say basically 'so what'. It's not really nice that policies make work for users, but sometimes that's just life; people will cope. I feel that this view is a mistake.
The problem with user-hostile policies is that users will circumvent them. Generously, let's assume that you enacted this policy to achieve some goal (not just to say that you have a policy and perhaps point to a technical implementation as proof of it). What you really want is not for the policy to be adhered to but to achieve your goal; the policy is just a tool in getting to the goal. If you enact a policy and then your users do things that defeat the goals of the policy, you have not actually achieved your overall goal. Instead you've made work, created resentment, and may have deluded yourself into thinking that your goal has actually been achieved because after all the policy has been applied.
(Clearly you won't have inconvenient old emails turn up because you're deleting all email after sixty days, right?)
In extreme cases, a user-hostile policy can actually move you further away from your goal. If your goal is 'minimal email retention', a policy that winds up causing users to automatically archive all emails locally because that's the most convenient way to handle things is actually moving you backwards. You were probably better off letting people keep as much email on the server as they wanted, because at least they were likely to delete some of it.
By the way, I happen to think that threatening punishment to people who take actions that go against the spirit or even the letter of your policy is generally not an effective thing from a business perspective in most environments, but that's another entry.
(As for policies for the sake of having policies, well, I would be really dubious of the idea that saying 'we have an email deletion policy so there's only X days of email on the mail server' will do you much good against either attackers or legal requests. To put it one way, do you think the police would accept that answer if they thought you had incriminating email and might have saved it somewhere?)