1. 15 Mar, 2019 4 kayıt (commit)
    • Victor Stinner's avatar
      bpo-36301: Add _PyWstrList structure (GH-12343) · 74f6568b
      Victor Stinner yazdı
      Replace messy _Py_wstrlist_xxx() functions with a new clean
      _PyWstrList structure and new _PyWstrList_xxx() functions.
      
      Changes:
      
      * Add _PyCoreConfig.use_module_search_paths to decide if
        _PyCoreConfig.module_search_paths should be computed or not, to
        support empty search path list.
      * _PyWstrList_Clear() sets length to 0 and items to NULL, whereas
        _Py_wstrlist_clear() only freed memory.
      * _PyWstrList_Append() returns an int, whereas _Py_wstrlist_append()
        returned _PyInitError.
      * _PyWstrList uses Py_ssize_t for the length, instead of int.
      * Replace (int, wchar_t**) with _PyWstrList in:
      
        * _PyPreConfig
        * _PyCoreConfig
        * _PyPreCmdline
        * _PyCmdline
      
      * Replace "int orig_argv; wchar_t **orig_argv;"
        with "_PyWstrList orig_argv".
      * _PyCmdline and _PyPreCmdline now also copy wchar_argv.
      * Rename _PyArgv_Decode() to _PyArgv_AsWstrList().
      * PySys_SetArgvEx() now pass the fixed (argc, argv) to
        _PyPathConfig_ComputeArgv0() (don't pass negative argc or NULL
        argv).
      * _PyOS_GetOpt() uses Py_ssize_t
      74f6568b
    • Victor Stinner's avatar
      bpo-36235: Fix CFLAGS in distutils customize_compiler() (GH-12236) · 86082c22
      Victor Stinner yazdı
      Fix CFLAGS in customize_compiler() of distutils.sysconfig: when the
      CFLAGS environment variable is defined, don't override CFLAGS variable with
      the OPT variable anymore.
      
      Initial patch written by David Malcolm.
      Co-Authored-By: 's avatarDavid Malcolm <dmalcolm@redhat.com>
      86082c22
    • Rémi Lapeyre's avatar
    • Raymond Hettinger's avatar
      1c668d16
  2. 14 Mar, 2019 6 kayıt (commit)
  3. 13 Mar, 2019 7 kayıt (commit)
  4. 12 Mar, 2019 10 kayıt (commit)
  5. 11 Mar, 2019 4 kayıt (commit)
  6. 10 Mar, 2019 6 kayıt (commit)
  7. 09 Mar, 2019 3 kayıt (commit)