Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
gh-119127: functools.partial placeholders#119827
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
ee7333c8bcc462c67c9b4680d9009591ff5067e9388af20b3607a0b1f55801e58941453722e07a79c2af12aaa7292c767b496a9d238d9c11707b95714b38ca32bca198576493a3fd2d608529936fea348caec6e8115b8c53f5f00b202c9292c16d38400ff558ccc38fe7c82c7c9b7ef3e59d7117bfc5917957a978aaee6afe8e0ad00dd80ed352cfa9038ed549b8c71bc1fdbd30672211185510266b4fadd58a125971fbb9033650d31e5d1a3d39b09e4c5df16f12f882dd600f9cb653d255524404044e800217b38ee45011f47db3c872bdfd16189a6c6ef21c8d73ea8bd3ae70e47ed2eacf5ef78d8d30a8640e6e3d28266c305d14bf68cee642d58d6c28e8744bcbb8964704881ae6c3ad7d95e5d484File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -210,6 +210,43 @@ def foo(bar): | ||
| p2.new_attr = 'spam' | ||
| self.assertEqual(p2.new_attr, 'spam') | ||
| def test_placeholders_trailing_trim(self): | ||
dg-pb marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| PH = self.module.Placeholder | ||
| for args in [(PH,), (PH, 0), (0, PH), (0, PH, 1, PH, PH, PH)]: | ||
| expected, n = tuple(args), len(args) | ||
| while n and args[n-1] is PH: | ||
| n -= 1 | ||
| expected = expected[:n] | ||
| p = self.partial(capture, *args) | ||
| self.assertTrue(p.args == expected) | ||
| def test_placeholders(self): | ||
| PH = self.module.Placeholder | ||
| # 1 Placeholder | ||
| args = (PH, 0) | ||
| p = self.partial(capture, *args) | ||
| got, empty = p('x') | ||
| self.assertTrue(('x', 0) == got and empty == {}) | ||
serhiy-storchaka marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| # 2 Placeholders | ||
| args = (PH, 0, PH, 1) | ||
| p = self.partial(capture, *args) | ||
| with self.assertRaises(TypeError): | ||
| got, empty = p('x') | ||
dg-pb marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| got, empty = p('x', 'y') | ||
| expected = ('x', 0, 'y', 1) | ||
| self.assertTrue(expected == got and empty == {}) | ||
| ||
| def test_placeholders_optimization(self): | ||
| PH = self.module.Placeholder | ||
| p = self.partial(capture, PH, 0) | ||
| p2 = self.partial(p, PH, 1, 2, 3) | ||
| expected = (PH, 0, 1, 2, 3) | ||
| self.assertTrue(expected == p2.args) | ||
serhiy-storchaka marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| p3 = self.partial(p2, -1, 4) | ||
| got, empty = p3(5) | ||
| expected = (-1, 0, 1, 2, 3, 4, 5) | ||
| self.assertTrue(expected == got and empty == {}) | ||
| def test_repr(self): | ||
| args = (object(), object()) | ||
| args_repr = ', '.join(repr(a) for a in args) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -48,7 +48,7 @@ typedef struct { | ||
| } placeholderobject; | ||
| PyDoc_STRVAR(placeholder_doc, "placeholder for partialarguments"); | ||
| static PyType_Slot placeholder_type_slots[] = { | ||
| @@ -57,7 +57,7 @@ static PyType_Slot placeholder_type_slots[] = { | ||
| }; | ||
| static PyType_Spec placeholder_type_spec = { | ||
| .name = "partial.Placeholder", | ||
dg-pb marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| .basicsize = sizeof(placeholderobject), | ||
| .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | | ||
dg-pb marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| Py_TPFLAGS_IMMUTABLETYPE | | ||
| @@ -73,7 +73,7 @@ typedef struct { | ||
| PyObject *kw; | ||
| PyObject *dict; /* __dict__ */ | ||
| PyObject *weakreflist; /* List of weak references */ | ||
| PyObject *placeholder; /* Placeholder for positional arguments */ | ||
| Py_ssize_t np; /* Number of placeholders */ | ||
| vectorcallfunc vectorcall; | ||
| } partialobject; | ||
| @@ -155,16 +155,21 @@ partial_new(PyTypeObject *type, PyObject *args, PyObject *kw) | ||
| Py_ssize_t nnargs = PyTuple_GET_SIZE(nargs); | ||
| PyObject *item; | ||
| if (nnargs > 0){ | ||
dg-pb marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| /* Trim placeholders from the end if needed */ | ||
| Py_ssize_t i; | ||
| for (i=nnargs; i > 0;) { | ||
| item = PyTuple_GET_ITEM(nargs, i-1); | ||
| if (!Py_Is(item, pto->placeholder)) | ||
| break; | ||
| i--; | ||
| } | ||
| if (i != nnargs){ | ||
| nnargs = i; | ||
| PyObject *tmp = PyTuple_GetSlice(nargs, 0, nnargs); | ||
| Py_DECREF(nargs); | ||
| nargs = tmp; | ||
| } | ||
| /* Count placeholders */ | ||
| if (nnargs > 0){ | ||
| for (Py_ssize_t i=0; i < nnargs; i++){ | ||
| item = PyTuple_GET_ITEM(nargs, i); | ||