1. 31 Dec, 2017 2 commits
  2. 30 Dec, 2017 9 commits
  3. 29 Dec, 2017 4 commits
  4. 28 Dec, 2017 2 commits
  5. 26 Dec, 2017 3 commits
  6. 25 Dec, 2017 5 commits
  7. 24 Dec, 2017 2 commits
  8. 23 Dec, 2017 8 commits
  9. 22 Dec, 2017 2 commits
  10. 21 Dec, 2017 3 commits
    • Victor Stinner's avatar
      bpo-29240: Skip test_readline.test_nonascii() (#4968) · 424315fa
      Victor Stinner authored
      Skip the test which fails on FreeBSD with POSIX locale.
      
      Skip the test to fix FreeBSD buildbots, until a fix can be found, so
      the buildbots can catch other regressions.
      424315fa
    • Victor Stinner's avatar
      bpo-20891: Skip test_embed.test_bpo20891() (#4967) · 550ee051
      Victor Stinner authored
      Skip the test failing randomly because of known race condition.
      
      Skip the test to fix macOS buildbots until a decision is made on the
      proper fix for the race condition.
      550ee051
    • Victor Stinner's avatar
      bpo-32030: Add _Py_FindEnvConfigValue() (#4963) · 9bee3291
      Victor Stinner authored
      Add a new _Py_FindEnvConfigValue() function: code shared between
      Windows and Unix implementations of _PyPathConfig_Calculate() to read
      the pyenv.cfg file.
      
      _Py_FindEnvConfigValue() now uses _Py_DecodeUTF8_surrogateescape()
      instead of using a Python Unicode string, the Python API must not be
      used early during Python initialization. Same change in Unix
      search_for_exec_prefix(): use _Py_DecodeUTF8_surrogateescape().
      
      Cleanup also encode_current_locale(): PyMem_RawFree/PyMem_Free can be
      called with NULL.
      
      Fix also "NUL byte" => "NULL byte" typo.
      9bee3291