1. 16 May, 2018 1 kayıt (commit)
  2. 15 May, 2018 1 kayıt (commit)
    • Eitan Adler's avatar
      bpo-33483: more correctly handle finding the C compiler (GH-6780) · 98929b54
      Eitan Adler yazdı
      Instead of passing configure args such as --without-gcc or --with-icc,
      instead prefer to rely on the native way of finding the compiler:
      passing CC (or CPP or CXX depending).
      
      This allows configure to find the correct compiler instead of having to
      be explicitly told. It also more correctly builds on both macOS and
      FreeBSD since the system compiler is used by default (cc)
      98929b54
  3. 04 May, 2018 1 kayıt (commit)
  4. 30 Nis, 2018 1 kayıt (commit)
  5. 31 Ock, 2018 1 kayıt (commit)
  6. 30 Ock, 2018 1 kayıt (commit)
    • Ned Deily's avatar
      bpo-32726: macOS installer and framework enhancements and changes for 3.7.0 (GH-5448) · 8c9bb72e
      Ned Deily yazdı
      This issue covers various changes for the macOS installers provided via python.org for 3.7.0.
      
      - Provide a provisional new installer variant for macOS 10.9 and later systems with 64-bit (x86_64) architecture only.  Apple has made it known that future versions of macOS will only fully support 64-bit executables and some other third-party software suppliers have chosen 10.9 as their oldest supported system.
       
      - Support **Tcl/Tk 8.6** with the 10.9 installer variant.
       
      - Upgrade **OpenSSL** to 1.1.0g and **SQLite** to 3.22.0.
       
      - The compiler name used for the interpreter build and for modules built with **Distutils / pip** is now _gcc_ rather than _gcc-4.2_. And extension module builds will no longer try to force use of an old SDK if present.
      8c9bb72e
  7. 29 Ock, 2018 2 kayıt (commit)
  8. 27 Ock, 2018 1 kayıt (commit)
  9. 23 Ock, 2018 1 kayıt (commit)
  10. 22 Ock, 2018 1 kayıt (commit)
  11. 20 Ock, 2018 1 kayıt (commit)
  12. 09 Ock, 2018 1 kayıt (commit)
  13. 06 Ock, 2018 1 kayıt (commit)
  14. 30 Ara, 2017 1 kayıt (commit)
    • Michael Felt's avatar
      bpo-32399: Starting with AIX6.1 there is support in libc.a for uuid (RFC4122) (#4974) · 0d3ccb43
      Michael Felt yazdı
      Starting with AIX6.1 there is support in libc.a for uuid (RFC4122)
      This patch provides the changes needed for this integration with the OS.
      
      On AIX the base function is uuid_create() rather than uuid_generate_time()
      The AIX uuid_t typedef is more aligned to the UUID field based definition
      while the Linux typedef that is more aligned with UUID bytes
      (or perhaps UUID bytes_le) definitions.
      0d3ccb43
  15. 22 Ara, 2017 1 kayıt (commit)
  16. 19 Ara, 2017 1 kayıt (commit)
  17. 06 Ara, 2017 1 kayıt (commit)
  18. 23 Kas, 2017 3 kayıt (commit)
  19. 11 Kas, 2017 1 kayıt (commit)
  20. 08 Kas, 2017 2 kayıt (commit)
  21. 06 Kas, 2017 1 kayıt (commit)
  22. 01 Kas, 2017 2 kayıt (commit)
  23. 31 Eki, 2017 1 kayıt (commit)
  24. 19 Eki, 2017 1 kayıt (commit)
  25. 09 Eki, 2017 1 kayıt (commit)
  26. 06 Eki, 2017 1 kayıt (commit)
  27. 05 Eki, 2017 1 kayıt (commit)
  28. 29 Eyl, 2017 2 kayıt (commit)
  29. 24 Eyl, 2017 1 kayıt (commit)
  30. 08 Eyl, 2017 1 kayıt (commit)
    • octaviansoldea's avatar
      bpo-31354: Let configure --with-lto work on all builds · 4c81401b
      octaviansoldea yazdı
      Allow configure --with-lto to apply to all builds, not just profile-opt builds.
      
      Whether this is actually useful or not must be determined by the person
      building CPython using their own toolchain.
      
      My own quick test on x86_64 Debian 9 (gcc 6.3, binutils 2.28) seemed
      to suggest that it wasn't, but I expect better toolchains can or will exist
      at some point.  The point is to allow it at all.
      4c81401b
  31. 07 Eyl, 2017 1 kayıt (commit)
  32. 06 Eyl, 2017 1 kayıt (commit)
    • caavery's avatar
      bpo-27584: New addition of vSockets to the python socket module (#2489) · effc12f8
      caavery yazdı
      * bpo-27584: New addition of vSockets to the python socket module
      
      Support for AF_VSOCK on Linux only
      
      * bpo-27584: Fixes for V2
      
      Fixed syntax and naming problems.
      Fixed #ifdef AF_VSOCK checking
      Restored original aclocal.m4
      
      * bpo-27584: Fixes for V3
      
      Added checking for fcntl and thread modules.
      
      * bpo-27584: Fixes for V4
      
      Fixed white space error
      
      * bpo-27584: Fixes for V5
      
      Added back comma in (CID, port).
      
      * bpo-27584: Fixes for V6
      
      Added news file.
      socket.rst now reflects first Linux introduction of AF_VSOCK.
      Fixed get_cid in test_socket.py.
      Replaced PyLong_FromLong with PyLong_FromUnsignedLong in socketmodule.c
      Got rid of extra AF_VSOCK #define.
      Added sockaddr_vm to sock_addr.
      
      * bpo-27584: Fixes for V7
      
      Minor cleanup.
      
      * bpo-27584: Fixes for V8
      
      Put back #undef AF_VSOCK as it is  necessary when vm_sockets.h is not installed.
      effc12f8
  33. 05 Eyl, 2017 1 kayıt (commit)
  34. 04 Eyl, 2017 1 kayıt (commit)