1. 07 Sep, 2018 10 commits
  2. 06 Sep, 2018 2 commits
  3. 05 Sep, 2018 1 commit
  4. 04 Sep, 2018 5 commits
  5. 03 Sep, 2018 6 commits
  6. 02 Sep, 2018 2 commits
  7. 01 Sep, 2018 3 commits
  8. 31 Aug, 2018 6 commits
  9. 30 Aug, 2018 2 commits
  10. 29 Aug, 2018 3 commits
    • Victor Stinner's avatar
      Fix TestPosixSpawn.test_close_file() (GH-8992) · 0382406f
      Victor Stinner authored
      Modify TestPosixSpawn to run Python using -I and -S options.
      
      Disable site module to avoid side effects. For example, on Fedora 28,
      if the HOME environment variable is not set, site._getuserbase()
      calls pwd.getpwuid() which opens /var/lib/sss/mc/passwd, but then
      leaves the file open which makes test_close_file() to fail.
      0382406f
    • Victor Stinner's avatar
      bpo-34523: Use _PyCoreConfig instead of globals (GH-9005) · fbca9085
      Victor Stinner authored
      Use the core configuration of the interpreter, rather
      than using global configuration variables. For example, replace
      Py_QuietFlag with core_config->quiet.
      fbca9085
    • Victor Stinner's avatar
      bpo-34523: Py_FileSystemDefaultEncoding NULL by default (GH-9003) · de427556
      Victor Stinner authored
      * Py_FileSystemDefaultEncoding and Py_FileSystemDefaultEncodeErrors
        default value is now NULL: initfsencoding() set them
        during Python initialization.
      * Document how Python chooses the filesystem encoding and error
        handler.
      * Add an assertion to _PyCoreConfig_Read().
      de427556