1. 28 Feb, 2016 4 commits
  2. 27 Feb, 2016 2 commits
  3. 26 Feb, 2016 4 commits
  4. 18 Feb, 2016 1 commit
  5. 03 Feb, 2016 1 commit
  6. 22 Feb, 2016 1 commit
  7. 25 Feb, 2016 4 commits
  8. 24 Feb, 2016 3 commits
    • Ned Deily's avatar
    • Ned Deily's avatar
      Change OS X installer builds targeted for 10.10 and above to build · 59884989
      Ned Deily authored
      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.
      59884989
    • Ned Deily's avatar
      Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. · 020250f9
      Ned Deily authored
      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
  9. 07 Feb, 2016 1 commit
  10. 24 Feb, 2016 3 commits
  11. 23 Feb, 2016 2 commits
  12. 22 Feb, 2016 5 commits
  13. 21 Feb, 2016 4 commits
  14. 20 Feb, 2016 2 commits
  15. 19 Feb, 2016 3 commits
    • Martin Panter's avatar
      Issues #22468, #21996, #22208: Clarify gettarinfo() and TarInfo usage · f817a48d
      Martin Panter authored
      * The Windows-specific binary notice was probably a Python 2 thing
      * Make it more obvious gettarinfo() is based on stat(), and that non-ordinary
        files may need special care
      * The file name must be text; suggest dummy arcname as a workaround
      * Indicate TarInfo may be used directly, not just via gettarinfo()
      f817a48d
    • Georg Brandl's avatar
      Closes #20169: fix inner links random doc. · 92849d17
      Georg Brandl authored
      92849d17
    • Martin Panter's avatar
      Issue #15608: Improve socketserver module documentation · eac17b89
      Martin Panter authored
      * Add headings for each concrete and mix-in class and list methods and
        attributes under them
      * Fix class and method cross references
      * Changed RequestHandler to BaseRequestHandler and added class heading
      * Pull out Stream/DatagramRequestHandler definitions
      * Reordered the request handler setup(), handle(), finish() methods
      * Document constructor parameters for the server classes
      * Remove version 2.6 not relevant for Python 3 documentation
      eac17b89