8000 Comparing stacked-git:master...hborchardt:master · stacked-git/stgit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stacked-git/stgit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: hborchardt/stgit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 2, 2020

  1. Windows: Pass environment variables to Popen as dict of strings

    In Python 3, the env argument to Popen has to be a dict of strings, see
    https://bugzilla.mozilla.org/show_bug.cgi?id=1585258#c4
    This is important when running under Windows, where the unicode strings
    are processed directly by the subprocess C code.
    
    However, under posix systems the environment variables are serialized to
    bytes using the file system encoding, which may not support unicode
    characters.
    This means that passing bytes as environment variables and skipping the
    encoding is mandatory on posix in order to support unicode environment
    variables.
    
    Therefore skip encoding when on Windows.
    hborchardt committed Nov 2, 2020
    Configuration menu
    Copy the full SHA
    f03c141 View commit details
    Browse the repository at this point in the history
Loading
0