-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
[3.5] bpo-28911: Clarify the behaviour of assert_called_once_with. #254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(cherry picked from commit 9d56b34)
vstinner
approved these changes
Feb 23, 2017
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
May 27, 2021
…in loop Remove redundant operations to prepare for merging the changes introduced by bpo-17611.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jun 4, 2021
…in loop Eliminate duplicated code to prepare for merging the changes introduced by bpo-17611.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jun 4, 2021
Fix the problem introduced by the previous merge of 520b7ae (bpo-17611).
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jun 7, 2021
…e_GET bpo-35081 added _PyThreadState_GET() internal macro and changed the C-Python code to use it. This commit updates Stackless code to use _PyThreadState_GET().
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 14, 2021
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 14, 2021
… the public API. Adapt Stackless to bpo-35886 and move the definition of PyStacklessInterpreterState from cpython/slp_tstate.h to internal/pycore_slp_pystate.h
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 16, 2021
…ng calls. Adapt Stackless to upstream commit 5be45a6.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 16, 2021
…g code for keyword parameters. Adapt Stackless to upstream commit 3191391.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 16, 2021
Adapt Stackless to upstream commit 10c8e6a.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 16, 2021
…ters. Adapt Stackless to upstream commit 8c77b8c. It is no longer possible to unpickle code objects pickled by prior versions of Stackless.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 25, 2021
…ORE_MODULE define Adapt Stackless to upstream commit 5c75f37. This commit broke building on Windows. * Prevent the indirect inclusion of Windows.h in Modules/_pickle.c * setup.py now compiles _teststackless.c with Py_BUILD_CORE_MODULE define.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 25, 2021
…Exit() anymore Adapt Stackless to upstream commit 1208328. Replace PyStackless_HandleSystemExit() by _Py_HandleSystemExit().
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 25, 2021
Adapt Stackless to upstream commit 438a12d. Add missing "tstate" parameters.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Jul 25, 2021
Adapt Stackless to upstream commit 331a6a5. Replace _Py_INIT_ERR() with _PyStatus_ERR()
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Aug 1, 2021
…ectorcall Adapt Stackless to upstream commit 37788bc.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Aug 4, 2021
…_FINALIZE The flag is now deprecated and is not needed any longer.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Aug 5, 2021
Adapt Stackless to upstream commit 1099e34.
akruis
pushed a commit
to akruis/cpython
that referenced
this pull request
Aug 6, 2021
…for each calling convention Adapt Stackless to upstream commit bf8e82f.
jaraco
pushed a commit
that referenced
this pull request
Dec 2, 2022
jaraco
added a commit
to jaraco/cpython
that referenced
this pull request
Feb 17, 2023
…-compound-path-non-existent-parent Restore lenience in MultiplexedPath.joinpath for missing directories
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
(cherry picked from commit 9d56b34)
See #251 and #252