X Tutup
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: char101/cpython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: char101/cpython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: patch-1
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 14 commits
  • 27 files changed
  • 10 contributors

Commits on May 9, 2017

  1. bpo-30258: regrtest: Fix run_tests_multiprocess() (python#1479)

    If the child process exited with a non-zero code, don't strip the
    last line of stdout anymore.
    
    Add also a sanity check in accumulate_result().
    vstinner authored May 9, 2017
    Configuration menu
    Copy the full SHA
    74683fc View commit details
    Browse the repository at this point in the history
  2. bpo-30273: update distutils.sysconfig for venv's created from Python (p…

    …ython#1515)
    
    compiled out-of-tree (builddir != srcdir). (see also bpo-15366)
    jkloth authored and vstinner committed May 9, 2017
    Configuration menu
    Copy the full SHA
    dbdea62 View commit details
    Browse the repository at this point in the history
  3. bpo-30024: Circular imports involving absolute imports with binding (p…

    …ython#1264)
    
    a submodule to a name are now supported.
    serhiy-storchaka authored May 9, 2017
    Configuration menu
    Copy the full SHA
    f93234b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6d336a0 View commit details
    Browse the repository at this point in the history
  5. PCbuild/build.bat: pass command line parameters when building PGO (py…

    …thon#1510)
    
    Custom msbuild properties passed as command line need to be passed too when calling `Build` when doing PGO build.
    char101 authored and vstinner committed May 9, 2017
    Configuration menu
    Copy the full SHA
    291557e View commit details
    Browse the repository at this point in the history

Commits on May 10, 2017

  1. bpo-30320: test_eintr now uses pthread_sigmask() (python#1523)

    Rewrite sigwaitinfo() and sigtimedwait() unit tests for EINTR using
    pthread_sigmask() to fix a race condition between the child and the
    parent process.
    
    Remove the pipe which was used as a weak workaround against the race
    condition.
    
    sigtimedwait() is now tested with a child process sending a signal
    instead of testing the timeout feature which is more unstable
    (especially regarding to clock resolution depending on the platform).
    vstinner authored May 10, 2017
    Configuration menu
    Copy the full SHA
    211a392 View commit details
    Browse the repository at this point in the history
  2. bpo-30298: Weaken the condition of deprecation warnings for inline mo…

    …difiers. (python#1490)
    
    Now allowed several subsequential inline modifiers at the start of the
    pattern (e.g. '(?i)(?s)...').  In verbose mode whitespaces and comments
    now are allowed before and between inline modifiers (e.g.
    '(?x) (?i) (?s)...').
    serhiy-storchaka authored May 10, 2017
    Configuration menu
    Copy the full SHA
    305ccbe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2ddf5a1 View commit details
    Browse the repository at this point in the history
  4. bpo-28787: Fix out of tree --with-dtrace builds (python#135)

    * bpo-28787: Fix out of tree --with-dtrace builds
    
    * Unsilence directory creation
    
    * Add Misc/NEWS and Misc/ACKS entries
    stratakis authored and vstinner committed May 10, 2017
    Configuration menu
    Copy the full SHA
    f6eae5b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c475095 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2017

  1. bpo-30048: asyncio: fix Task.cancel() was ignored. (pythonGH-1097)

    when there are no more `await` or `yield (from)` before return in coroutine,
    cancel was ignored.
    
    example:
    
        async def coro():
            asyncio.Task.current_task().cancel()
            return 42
        ...
        res = await coro()  # should raise CancelledError
    methane authored May 11, 2017
    Configuration menu
    Copy the full SHA
    991adca View commit details
    Browse the repository at this point in the history
  2. bpo-30308: Code coverage for argument in random.shuffle (python#1504)

    * bpo-30308: Code coverage for argument in random.shuffle
    
    * bpo-30308: Code coverage for argument in random.shuffle
    
    * bpo-30308: Code coverage for argument in random.shuffle
    csabella authored and rhettinger committed May 11, 2017
    Configuration menu
    Copy the full SHA
    f111fd2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    31b3901 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2017

  1. PCbuild/build.bat: Add note about using msbuild response file.

    Using a response file will eliminate the headache associated with batch argument/quote processing.
    
    For example I unsucessfully compiled python with visualcpptools when specifying VSInstallDir in the batch file (cannot find vcruntime.h)
    
    ```batch
    build.bat -p x64 -e -M --no-tkinter  "/p:VCInstallDir=%VCInstallDir%"
    ```
    
    but it build successfully when specifying it in a response file
    
    msbuild.rsp:
    ```
    /p:VCInstallDir=%VCInstallDir%
    ```
    char101 authored May 12, 2017
    Configuration menu
    Copy the full SHA
    80aa9c8 View commit details
    Browse the repository at this point in the history
Loading
X Tutup