1. 11 Oct, 2010 1 commit
  2. 10 Oct, 2010 10 commits
  3. 09 Oct, 2010 5 commits
  4. 08 Oct, 2010 10 commits
  5. 07 Oct, 2010 12 commits
  6. 06 Oct, 2010 2 commits
    • Victor Stinner's avatar
      Rewrite RunMainFromImporter() · 4726e40e
      Victor Stinner authored
       * fix argv0 reference counter if PyList_SetItem() fails
       * don't use complex if conditions, but a simple indentation and "goto error"
       * simplify error handling (remove Py_XDECREF(importer) from the error label)
       * don't set sys_path to NULL (it's useless, sys_path is a borrowed reference
         and sys_path is not a static variable)
       * try to write only one instruction per line for better readability
      4726e40e
    • Victor Stinner's avatar
      Create a subfunction for PySys_SetArgvEx() · c08ec9fd
      Victor Stinner authored
      Create sys_update_path() static function. Do nothing if argc==0.
      c08ec9fd