Don't surprise the programmer by behaving/working differently than expected.
5
votes
1answer
82 views
Default function values in multi-layer architecture
Wondering the best way to set defaults in a multi-layer application structure. Specifically, if a certain work flow requires a nested set of function calls, is the default specified on all the ...
2
votes
1answer
107 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 ...
-2
votes
1answer
143 views
What are the implications of using mutable types as default arguments in Python? [duplicate]
Possible Duplicates:
Why the “mutable default argument fix” syntax is so ugly, asks python newbie
least astonishment in python: the mutable default argument
Here is an ...
4
votes
4answers
2k 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:
...
4
votes
1answer
161 views
Shouldn't using FieldInfo.SetValue to set a ValueType to null fail?
(related to http://stackoverflow.com/questions/3049477/propertyinfo-setvalue-and-nulls)
If I have public class Thing { public int X; }, a Thing o, and a FieldInfo fi that points to the X field, why ...
418
votes
19answers
22k views
“Least Astonishment” in Python: The Mutable Default Argument
Anyone tinkering with python long enough has been bitten (or torn to pieces) by the following issue:
def foo(a=[]):
a.append(5)
return a
Python novices would expect this function to always ...
0
votes
3answers
139 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 ...
