An error occurred fetching the project authors.
  1. 13 May, 2008 1 commit
  2. 09 May, 2008 1 commit
  3. 30 Apr, 2008 1 commit
  4. 27 Apr, 2008 1 commit
  5. 25 Apr, 2008 1 commit
  6. 22 Apr, 2008 2 commits
  7. 04 Apr, 2008 1 commit
  8. 25 Mar, 2008 2 commits
  9. 05 Mar, 2008 1 commit
  10. 02 Mar, 2008 1 commit
  11. 16 Feb, 2008 1 commit
  12. 13 Feb, 2008 3 commits
  13. 07 Feb, 2008 3 commits
  14. 17 Jan, 2008 1 commit
  15. 29 Nov, 2007 1 commit
  16. 16 Nov, 2007 1 commit
  17. 01 Nov, 2007 2 commits
  18. 25 Oct, 2007 1 commit
  19. 24 Oct, 2007 2 commits
  20. 21 Oct, 2007 2 commits
  21. 18 Oct, 2007 4 commits
  22. 15 Oct, 2007 1 commit
  23. 11 Oct, 2007 3 commits
  24. 19 Sep, 2007 3 commits
    • Robert Bradshaw's avatar
      Fix classmethod for use in cdef classes. · 1d6dbf9d
      Robert Bradshaw authored
      The issue here (as pointed out by Thomas Hunger) is that once the CClass
      body gets executed the class is already constructed, and its methods
      are actual methods not functions (as in Python).
      
      The CClassScope now returns a utility function on lookup of "classmethod"
      that creates a class method out of a method (rather than out of a function).
      When added to the type dictionary, the result is exactly the same as setting
      the METH_CLASS flag.
      1d6dbf9d
    • Thomas Hunger's avatar
      Changed the assigment code generator to emit · 1c9be2fc
      Thomas Hunger authored
      a direct change of a classes tp_dict instead
      of SetAttr if assignment code is executed in
      a class body.
      To tell the code generator that we have a class
      entry, entry has a new attribute "is_member".
      1c9be2fc
    • Thomas Hunger's avatar
      Emit and release temporary variables in global namespace · 936fa570
      Thomas Hunger authored
      because the class-body code is exectuted at module-init time.
      936fa570