1. 25 Mar, 2013 1 commit
  2. 22 Mar, 2013 4 commits
  3. 21 Mar, 2013 4 commits
  4. 20 Mar, 2013 4 commits
  5. 18 Mar, 2013 2 commits
  6. 15 Mar, 2013 11 commits
  7. 14 Mar, 2013 12 commits
  8. 13 Mar, 2013 2 commits
    • Vincent Pelletier's avatar
      Collapse contiguous identical delimiters. · 60cda24d
      Vincent Pelletier authored
      Fixes copy-paste of DateTimeField rendering into search expression, as it
      separates time from date with 3 spaces.
      60cda24d
    • Vincent Pelletier's avatar
      Fix magic "self" parameter detection. · 47ca5f17
      Vincent Pelletier authored
      Original code behaviour:
      >>> def foo(self, a=None):
      ...    return 'works'
      ...
      >>> context.foo(a=1)
      works
      >>> def foo(self, a):
      ...   return 'works'
      ...
      >>> context.foo(1)
      works
      >>> context.foo(a=1)
      TypeError: foo() takes exactly 2 non-keyword arguments (0 given)
      
      New behaviour fixes this TypeError, to be closer to normal python
      behaviour.
      Also, original code was doing expensive checks before cheap ones.
      47ca5f17