1. 12 Sep, 2018 5 commits
  2. 11 Sep, 2018 4 commits
  3. 10 Sep, 2018 3 commits
  4. 07 Sep, 2018 1 commit
  5. 05 Sep, 2018 1 commit
  6. 04 Sep, 2018 1 commit
  7. 03 Sep, 2018 1 commit
  8. 02 Sep, 2018 1 commit
  9. 31 Aug, 2018 1 commit
  10. 30 Aug, 2018 1 commit
  11. 26 Aug, 2018 1 commit
  12. 25 Aug, 2018 1 commit
  13. 24 Aug, 2018 3 commits
  14. 23 Aug, 2018 1 commit
  15. 22 Aug, 2018 2 commits
  16. 20 Aug, 2018 1 commit
  17. 17 Aug, 2018 1 commit
  18. 16 Aug, 2018 1 commit
  19. 15 Aug, 2018 1 commit
  20. 14 Aug, 2018 1 commit
  21. 06 Aug, 2018 3 commits
  22. 03 Aug, 2018 2 commits
  23. 02 Aug, 2018 3 commits
    • Victor Stinner's avatar
      Fix compilation warnings on Windows (GH-8627) · dd4d8b4d
      Victor Stinner authored
      * Fix compilation warning in _ctypes module on Window
      
      (cherry picked from commit 20f11fe4)
      
      * Fix compilation warnings on Windows 64-bit
      
      (cherry picked from commit 725e4212)
      
      * Fix compiler warning in unicodeobject.c
      
      Explicitly case to Py_UNICODE to fix the warning:
      
      Objects\unicodeobject.c(4225): warning C4244: '=' :
      conversion from 'long' to 'Py_UNICODE', possible loss of data
      
      The downcast cannot overflow since we check that value <= 0x10ffff.
      dd4d8b4d
    • Victor Stinner's avatar
      bpo-29565: Fix compilation for C89 (GH-8626) · 6a6b2483
      Victor Stinner authored
      Use a local scope for the 'i' variable.
      6a6b2483
    • Victor Stinner's avatar
      bpo-29565: Corrected ctypes passing of large structs by value on Windows AMD64 (GH-168) (GH-8625) · 3243f8c1
      Victor Stinner authored
      Fixed bpo-29565: Corrected ctypes passing of large structs by value.
      
      Added code and test to check that when a structure passed by value
      is large enough to need to be passed by reference, a copy of the
      original structure is passed. The callee updates the passed-in value,
      and the test verifies that the caller's copy is unchanged. A similar
      change was also added to the test added for bpo-20160 (that test was
      passing, but the changes should guard against regressions).
      
      (cherry picked from commit a86339b8)
      3243f8c1