1. 03 Tem, 2016 1 kayıt (commit)
  2. 01 Tem, 2016 1 kayıt (commit)
  3. 30 Haz, 2016 2 kayıt (commit)
  4. 27 Haz, 2016 1 kayıt (commit)
  5. 26 Haz, 2016 2 kayıt (commit)
  6. 25 Haz, 2016 4 kayıt (commit)
  7. 24 Haz, 2016 2 kayıt (commit)
  8. 23 Haz, 2016 3 kayıt (commit)
  9. 22 Haz, 2016 5 kayıt (commit)
  10. 21 Haz, 2016 1 kayıt (commit)
    • Martin Panter's avatar
      Issue #22463: Backport compiler warning fixes and workarounds · 646b5284
      Martin Panter yazdı
      * Set but unused variable in Parser/pgen.c in non-debug builds. Patch by
        Christian Heimes.
      * Unused static function in Modules/readline.c. Patch by Georg Brandl.
      * main_window unused in Modules/tkappinit.c. Patch by Gregory P. Smith.
      * Dead assignment in Modules/_ctypes/cfield.c. Extracted from patch by Brett
        Cannon.
      * Expression result unused in PyObject_INIT macro expansions. Based on
        patches by Christian Heimes.
      * Load expat_config.h and therefore pyconfig.h before C stdlib headers are
        loaded. This silences pre-processor warnings including '_POSIX_C_SOURCE
        redefined'. Extracted from patch by Christian Heimes.
      646b5284
  11. 20 Haz, 2016 1 kayıt (commit)
  12. 18 Haz, 2016 2 kayıt (commit)
  13. 15 Haz, 2016 1 kayıt (commit)
  14. 11 Haz, 2016 8 kayıt (commit)
  15. 10 Haz, 2016 1 kayıt (commit)
  16. 02 Haz, 2016 1 kayıt (commit)
  17. 10 Haz, 2016 1 kayıt (commit)
  18. 03 Haz, 2016 1 kayıt (commit)
  19. 16 Eki, 2014 1 kayıt (commit)
    • Victor Stinner's avatar
      Issue #22636: Avoid using a shell in the ctypes.util module · eb063011
      Victor Stinner yazdı
      Replace os.popen() with subprocess.Popen.
      
      If the "gcc", "cc" or "objdump" command is not available, the code was
      supposed to raise an OSError exception. But there was a bug in the code. The
      shell code returns the exit code 10 if the required command is missing, and the
      code tries to check for the status 10. The problem is that os.popen() doesn't
      return the exit code directly, but a status which should be processed by
      os.WIFEXITED() and os.WEXITSTATUS(). In practice, the exception was never
      raised. The OSError exception was not documented and ctypes.util.find_library()
      is expected to return None if the library is not found.
      
      Based on patch by Victor Stinner.
      eb063011
  20. 17 Haz, 2016 1 kayıt (commit)