Tagged Questions
The least-astonishment tag has no wiki summary.
136
votes
14answers
6k views
“Least Astonishment” in Python: The Mutable Default Argument
Anyone tinkering with python long enough has been bit (or torn to pieces) by the following issue:
def foo(a=[]):
a.append(5)
return a
Python novices would expect this function to always ...
3
votes
4answers
282 views
“Boolean” operations in Python (ie: the and/or operators)
This method searches for the first group of word characters (ie: [a-zA-Z0-9_]), returning the first matched group or None in case of failure.
def test(str):
m = re.search(r'(\w+)', str)
if m:
...
2
votes
1answer
48 views
Oddly Ruby behavior
I need to check if a variable is an array, and if not convert it into one before proceed with further processing. So, my code looks like this:
class Test < Struct.new(:args)
def eval
p ...
0
votes
3answers
117 views
Recurring dates on dates that do not exist
When giving the option for something to reoccur every certain amount of time how should I treat times that don't reoccur on every interval?
For example what should happen to birthday reminders for ...