1. 13 Oct, 2009 1 commit
  2. 12 Oct, 2009 1 commit
  3. 11 Oct, 2009 6 commits
  4. 10 Oct, 2009 18 commits
  5. 09 Oct, 2009 5 commits
  6. 08 Oct, 2009 5 commits
  7. 07 Oct, 2009 1 commit
  8. 06 Oct, 2009 3 commits
    • Robert Bradshaw's avatar
      merge · abba2535
      Robert Bradshaw authored
      abba2535
    • Mark Lodato's avatar
      set module_is_main = 1 in main(), not globally · 8c686843
      Mark Lodato authored
      From 3ebc39282aa9a8379069df12b0c8cc86a2ac8a25 Mon Sep 17 00:00:00 2001
      Date: Mon, 5 Oct 2009 21:17:04 -0400
      For --embed mode, always initialize the global variable
      __pyx_module_is_main_MODULE to zero, even with --embed, and only set it
      to one in main().  This would allow the same code to still work if
      compiled as a shared library (main would be ignored) and also make the
      code cleaner since all of the --embed stuff would be in one place.
      ---
       Cython/Compiler/ModuleNode.py |    6 ++++--
       1 files changed, 4 insertions(+), 2 deletions(-)
      8c686843
    • Mark Lodato's avatar
      fix -Wextra warning for empty `else' body · 5d8d9abf
      Mark Lodato authored
      From faba5d52ae82239f522c108b51fa18dbb1ae9a8b Mon Sep 17 00:00:00 2001
      Date: Mon, 5 Oct 2009 22:49:07 -0400
      The macros XDECREF, XGIVEREF, and XGOTREF used ";" to denote an empty if
      and else body, but these raised the following warning when compiled with
      "gcc -Wall -Wextra":
      
          warning: suggest braces around empty body in an `else' statement
      ---
       Cython/Compiler/ModuleNode.py |    6 +++---
       1 files changed, 3 insertions(+), 3 deletions(-)
      5d8d9abf