1. 25 Şub, 2016 2 kayıt (commit)
  2. 24 Şub, 2016 4 kayıt (commit)
    • Ned Deily's avatar
    • Ned Deily's avatar
      Change OS X installer builds targeted for 10.10 and above to build · 942f3de9
      Ned Deily yazdı
      and link with a private copy of OpenSSL, like installers targeted
      for 10.5 already do, since Apple has deprecated use of the system
      OpenSSL and removed its header files from the Xcode 7 SDK.  Note
      that this configuration is not currently used to build any
      python.org-supplied installers and that the private copy of
      OpenSSL requires its own root certificates.
      942f3de9
    • Ned Deily's avatar
      Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. · 83abccbb
      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.
      83abccbb
    • Martin Panter's avatar
  3. 23 Şub, 2016 3 kayıt (commit)
  4. 22 Şub, 2016 3 kayıt (commit)
  5. 20 Şub, 2016 1 kayıt (commit)
  6. 19 Şub, 2016 4 kayıt (commit)
  7. 18 Şub, 2016 3 kayıt (commit)
  8. 15 Şub, 2016 2 kayıt (commit)
  9. 12 Şub, 2016 1 kayıt (commit)
  10. 10 Şub, 2016 4 kayıt (commit)
  11. 08 Şub, 2016 3 kayıt (commit)
  12. 07 Şub, 2016 2 kayıt (commit)
  13. 08 Şub, 2016 1 kayıt (commit)
    • Martin Panter's avatar
      Issue #25179: Preparatory cleanup of existing docs on string formatting · 00f19eff
      Martin Panter yazdı
      * There was a link pointing to the section on the string.Formatter class (and
        multiple links in Python 3), when the section on the common format string
        syntax is probably more appropriate
      * Fix references to various format() functions and methods
      * Nested replacement fields may contain conversions and format specifiers,
        and this is tested in Python 3; see Issue #19729 for instance
      00f19eff
  14. 06 Şub, 2016 1 kayıt (commit)
  15. 05 Şub, 2016 1 kayıt (commit)
  16. 14 Kas, 2014 1 kayıt (commit)
  17. 04 Şub, 2016 2 kayıt (commit)
  18. 02 Şub, 2016 1 kayıt (commit)
    • Serhiy Storchaka's avatar
      Issue #25945: Fixed bugs in functools.partial. · 71b71763
      Serhiy Storchaka yazdı
      Fixed a crash when unpickle the functools.partial object with wrong state.
      Fixed a leak in failed functools.partial constructor.
      "args" and "keywords" attributes of functools.partial have now always types
      tuple and dict correspondingly.
      71b71763
  19. 03 Şub, 2016 1 kayıt (commit)