1. 29 Jan, 2016 1 commit
    • Paul Sokolovsky's avatar
      py/runtime: mp_stack_ctrl_init() should be called immediately on startup. · d3b1f0b6
      Paul Sokolovsky authored
      Calling it from mp_init() is too late for some ports (like Unix), and leads
      to incomplete stack frame being captured, with following GC issues. So, now
      each port should call mp_stack_ctrl_init() on its own, ASAP after startup,
      and taking special precautions so it really was called before stack variables
      get allocated (because if such variable with a pointer is missed, it may lead
      to over-collecting (typical symptom is segfaulting)).
      d3b1f0b6
  2. 28 Jan, 2016 3 commits
  3. 27 Jan, 2016 3 commits
  4. 26 Jan, 2016 5 commits
  5. 24 Jan, 2016 3 commits
  6. 23 Jan, 2016 2 commits
  7. 21 Jan, 2016 1 commit
  8. 19 Jan, 2016 2 commits
  9. 17 Jan, 2016 3 commits
  10. 16 Jan, 2016 1 commit
  11. 15 Jan, 2016 5 commits
  12. 14 Jan, 2016 2 commits
    • chrysn's avatar
      builtin property: accept keyword arguments · f8ba2eca
      chrysn authored
      this allows python code to use property(lambda:..., doc=...) idiom.
      
      named versions for the fget, fset and fdel arguments are left out in the
      interest of saving space; they are rarely used and easy to enable when
      actually needed.
      
      a test case is included.
      f8ba2eca
    • stijn's avatar
      tests: Remove builtin_dict test · dea585f8
      stijn authored
      This is essentially a duplicate of obj_dict.py
      dea585f8
  13. 13 Jan, 2016 3 commits
  14. 12 Jan, 2016 1 commit
  15. 11 Jan, 2016 5 commits