1. 04 Haz, 2016 1 kayıt (commit)
  2. 02 Haz, 2016 1 kayıt (commit)
  3. 26 Nis, 2016 1 kayıt (commit)
  4. 19 Nis, 2016 1 kayıt (commit)
  5. 24 Şub, 2016 1 kayıt (commit)
    • Ned Deily's avatar
      Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. · 020250f9
      Ned Deily yazdı
      As of Xcode 7, SDKs for Apple platforms now include textual-format stub
      libraries whose file names have a .tbd extension rather than the
      standard OS X .dylib extension.  The Apple compiler tool chain handles
      these stub libraries transparently and the installed system shared libraries
      are still .dylibs.  However, the new stub libraries cause problems for
      third-party programs that support building with Apple SDKs and make
      build-time decisions based on the presence or paths of system-supplied
      shared libraries in the SDK.  In particular, building Python itself with
      an SDK fails to find system-supplied libraries during setup.py's build of
      standard library extension modules.  The solution is to have
      find_library_file() in Distutils search for .tbd files, along with
      the existing types (.a, .so, and .dylib).  Patch by Tim Smith.
      020250f9
  6. 11 Şub, 2016 1 kayıt (commit)
  7. 03 Şub, 2016 2 kayıt (commit)
  8. 03 Haz, 2015 1 kayıt (commit)
  9. 23 May, 2015 1 kayıt (commit)
    • Nick Coghlan's avatar
      PEP 489: Multi-phase extension module initialization · d5cacbb1
      Nick Coghlan yazdı
      Known limitations of the current implementation:
      
      - documentation changes are incomplete
      - there's a reference leak I haven't tracked down yet
      
      The leak is most visible by running:
      
        ./python -m test -R3:3 test_importlib
      
      However, you can also see it by running:
      
        ./python -X showrefcount
      
      Importing the array or _testmultiphase modules, and
      then deleting them from both sys.modules and the local
      namespace shows significant increases in the total
      number of active references each cycle. By contrast,
      with _testcapi (which continues to use single-phase
      initialisation) the global refcounts stabilise after
      a couple of cycles.
      d5cacbb1
  10. 01 Eki, 2014 1 kayıt (commit)
  11. 30 Eyl, 2014 1 kayıt (commit)
  12. 27 Eyl, 2014 1 kayıt (commit)
  13. 26 Eyl, 2014 1 kayıt (commit)
  14. 10 Agu, 2014 1 kayıt (commit)
  15. 25 Haz, 2014 1 kayıt (commit)
  16. 30 May, 2014 1 kayıt (commit)
  17. 30 Nis, 2014 1 kayıt (commit)
  18. 17 Nis, 2014 1 kayıt (commit)
  19. 15 Mar, 2014 1 kayıt (commit)
  20. 04 Şub, 2014 1 kayıt (commit)
  21. 04 Ock, 2014 1 kayıt (commit)
  22. 03 Ock, 2014 1 kayıt (commit)
  23. 24 Kas, 2013 1 kayıt (commit)
    • Stefan Krah's avatar
      1) Prepare libmpdec for the 2.4.0 release. None of the following changes affects · 45059eb1
      Stefan Krah yazdı
         _decimal:
      
            o Make all "mpd_t to C integer" conversion functions available in both the
              64-bit and the 32-bit versions.
      
            o Make all mixed mpd_t/C integer arithmetic functions available in the
              32-bit version.
      
            o Better handling of __STDC_LIMIT_MACROS for C++ users.
      
            o Add struct tags (at the request of C++ users).
      
      2) Check for libmpdec.so.2 if --with-system-libmpdec is used.
      45059eb1
  24. 23 Kas, 2013 1 kayıt (commit)
  25. 25 Eki, 2013 1 kayıt (commit)
    • Ned Deily's avatar
      Issue #1584: Provide options to override default search paths for Tcl and Tk · 65657c27
      Ned Deily yazdı
      when building _tkinter.  configure has two new options; if used, both must
      be specified:
      
        ./configure \
            --with-tcltk-includes="-I/opt/local/include" \
            --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5"
      
      In addition, the options can be overridden with make:
      
         make \
             TCLTK_INCLUDES="-I/opt/local/include" \
             TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
      65657c27
  26. 19 Eki, 2013 1 kayıt (commit)
  27. 06 Eyl, 2013 1 kayıt (commit)
    • Ned Deily's avatar
      Issue #1584: Provide options to override default search paths for Tcl and Tk · d819b931
      Ned Deily yazdı
      when building _tkinter.  configure has two new options; if used, both must
      be specified:
      
        ./configure \
            --with-tcltk-includes="-I/opt/local/include" \
            --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5"
      
      In addition, the options can be overridden with make:
      
         make \
             TCLTK_INCLUDES="-I/opt/local/include" \
             TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
      d819b931
  28. 02 Agu, 2013 1 kayıt (commit)
  29. 15 Tem, 2013 1 kayıt (commit)
    • Ronald Oussoren's avatar
      Issue #18393: Remove use of deprecated API on OSX · 0fedb37c
      Ronald Oussoren yazdı
      The "Gestalt" function on OSX is deprecated (starting with OSX 10.8),
      remove its usage from the stdlib. The patch removes a number of private
      functions and a private module, but does not change the public API.
      
      The removed code was effectively dead, the platform module has used
      other code to fetch the OSX version for years and could only use
      on the Gestalt-based code as a fallback. That fallback can only trigger
      on broken OSX installs (that is, someone has removed parts of the system
      install)
      0fedb37c
  30. 12 Tem, 2013 1 kayıt (commit)
  31. 15 Haz, 2013 1 kayıt (commit)
  32. 28 Mar, 2013 1 kayıt (commit)
  33. 21 Mar, 2013 1 kayıt (commit)
  34. 19 Mar, 2013 2 kayıt (commit)
  35. 07 Mar, 2013 1 kayıt (commit)
  36. 23 Şub, 2013 2 kayıt (commit)
  37. 09 Şub, 2013 1 kayıt (commit)