Categories: links, linux, programming, python, snark, solaris, spam, sysadmin, tech, unix, web.
|
2009-11-07 Solving unexposed types and the limits of duck typingWhen I ran into the issue of the re module not exposing its types, I considered several solutions to my underlying
problem of distinguishing strings from compiled regular expressions.
For various reasons, I wound up picking the solution that was the least
annoying to code; I decided whether something was compiled regular
expression by checking to see if it had a This is the traditional Python approach to the problem; don't check
types as such, just check to see if the object has the behavior that
you're looking for. However, there's a problem with this, which I can
summarize by noting that Checking duck typing by checking for attribute names only works when you can be reasonably confidant that the attributes you're looking for are relatively unique. Unfortunately, nicely generic method names are likely to be popular, because they are simple and so broadly applicable, which means that you risk inadvertent collisions. (A casual scan of my workstation's Python packages turns up several
packages with classes with ' You can improve the accuracy of these checks by testing for more than one attribute, but this rapidly gets both annoying and verbose. (I'm sure that I'm not the first person to notice this potential drawback.) Sidebar: the solutions that I can think ofHere's all of the other solutions that I can think of offhand:
I didn't discover the last solution until I wrote this entry. It's now tempting to revise my code to use it instead of the attribute test, especially since it would make the code shorter. (This behavior is not officially documented, which is a reason to avoid it.) (2 comments.)
python/DuckTypingLimits written at 23:40:56; Add Comment
A gotcha with Bash on Ubuntu 8.04Suppose that you have an Ubuntu 8.04 system where you have opted to make
/bin/sh be bash, the way it used to be in 6.06, and you have an account
with /bin/sh as the login shell (for example, you created it with plain
(The text in bold is what you typed before you hit <TAB>.) I'll give you the fix first: use This is one of those interestingly misleading error messages, although if you read very carefully Bash is actually sort of telling you what is going on. Let me give you a related example:
This error message has the same form as the first one but makes it much more obvious what the shell is complaining about. For filename completion, what seems to be going on is that when Bash is
operating in sh-compatible mode as a login shell, it is bash-like enough
to cause the Ubuntu 8.04 default dotfiles to load the bash command
line completion shell functions, but those functions use Bash-specific
syntax. As a result, Bash in sh-compatible mode interprets the (I spent a long time being confused by the error message because I
didn't read it carefully and thus didn't realize that it was complaining
about a failed redirection instead of a failure to find Short summary: this is an Ubuntu 8.04 bug caused by them not expecting
(One comment.)
linux/BashCompletionIssue written at 01:24:39; Add Comment
|
These are my WanderingThoughts GettingAround This is part of CSpace, and is written by ChrisSiebenmann. * * * Atom feeds are available; see the bottom of most pages. Categories: links, linux, programming, python, snark, solaris, spam, sysadmin, tech, unix, web |