-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: char101/cpython
base: master
head repository: char101/cpython
compare: patch-1
- 14 commits
- 27 files changed
- 10 contributors
Commits on May 9, 2017
-
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().
Configuration menu - View commit details
-
Copy full SHA for 74683fc - Browse repository at this point
Copy the full SHA 74683fcView commit details -
bpo-30273: update distutils.sysconfig for venv's created from Python (p…
…ython#1515) compiled out-of-tree (builddir != srcdir). (see also bpo-15366)
Configuration menu - View commit details
-
Copy full SHA for dbdea62 - Browse repository at this point
Copy the full SHA dbdea62View commit details -
bpo-30024: Circular imports involving absolute imports with binding (p…
…ython#1264) a submodule to a name are now supported.
Configuration menu - View commit details
-
Copy full SHA for f93234b - Browse repository at this point
Copy the full SHA f93234bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d336a0 - Browse repository at this point
Copy the full SHA 6d336a0View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 291557e - Browse repository at this point
Copy the full SHA 291557eView commit details
Commits on May 10, 2017
-
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).
Configuration menu - View commit details
-
Copy full SHA for 211a392 - Browse repository at this point
Copy the full SHA 211a392View commit details -
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)...').
Configuration menu - View commit details
-
Copy full SHA for 305ccbe - Browse repository at this point
Copy the full SHA 305ccbeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ddf5a1 - Browse repository at this point
Copy the full SHA 2ddf5a1View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for f6eae5b - Browse repository at this point
Copy the full SHA f6eae5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c475095 - Browse repository at this point
Copy the full SHA c475095View commit details
Commits on May 11, 2017
-
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 CancelledErrorConfiguration menu - View commit details
-
Copy full SHA for 991adca - Browse repository at this point
Copy the full SHA 991adcaView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for f111fd2 - Browse repository at this point
Copy the full SHA f111fd2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 31b3901 - Browse repository at this point
Copy the full SHA 31b3901View commit details
Commits on May 12, 2017
-
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% ```
Configuration menu - View commit details
-
Copy full SHA for 80aa9c8 - Browse repository at this point
Copy the full SHA 80aa9c8View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...patch-1