An error occurred fetching the project authors.
  1. 19 Aug, 2007 1 commit
  2. 17 Aug, 2007 2 commits
  3. 28 Jul, 2007 1 commit
  4. 11 Jul, 2007 1 commit
  5. 10 Jul, 2007 1 commit
    • Robert Bradshaw's avatar
      gcc branch prediction · 4bce9494
      Robert Bradshaw authored
      For some reason, it actually makes it slower in some of the most common cases (now commented out). Why? It does help in others.
      4bce9494
  6. 07 Jun, 2007 1 commit
  7. 27 Feb, 2007 1 commit
    • Robert Bradshaw's avatar
      Inline keyword for cdef functions, variable assignment on declaration (+optimization) · a72407b4
      Robert Bradshaw authored
      "cdef inline foo()" now valid, and will place inline in the resulting c code
      
      "cdef o = expr" and "cdef type x = expr" now valid.
      This may not seem like a huge change, but it ended up requiring
      quite a bit of work. The variables are still all declared at the
      top, but the assignment takes place at the specified line in the
      code.
      
      If an assignment is made at declaration, the variable is initalized to
      0 rather than None (also skipping an INCREF) and Py_XDECREF is used on
      exiting the function (in case an error occured before the actual value
      was calculated). Hence these variables MUST NOT be used before they are
      defined or it will probably segfault.
      a72407b4
  8. 30 Nov, 2006 1 commit
    • William Stein's avatar
      Eric Huss's readonly variable patch: · f4961542
      William Stein authored
      There's a minor bug, if you try to cdef a readonly variable at the module
      scope, the compiler raises an UnboundLocalError exception.  The attached
      patch seems to clear up the problem and gets the compiler to report the
      correct error.
      f4961542
  9. 03 Nov, 2006 1 commit
  10. 02 Nov, 2006 1 commit
  11. 20 Oct, 2006 1 commit