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 |
|---|---|---|
| @@ -280,6 +280,7 @@ class __PlaceholderTypeBase: | ||
| Used as a placeholder for partial arguments. | ||
| """ | ||
| __instance = None | ||
dg-pb marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| __slots__ = () | ||
| def __new__(cls): | ||
| if cls.__instance is None: | ||
| @@ -295,8 +296,14 @@ def __repr__(self): | ||
| def __reduce__(self): | ||
| return 'Placeholder' | ||
| def __placeholder_init_subclass__(cls, *args, **kwargs): | ||
| raise TypeError(f"type '{cls.__name__}' is not an acceptable base type") | ||
| Placeholder = type( | ||
| 'PlaceholderType', | ||
| (__PlaceholderTypeBase,), | ||
| {'__slots__': (), '__init_subclass__': __placeholder_init_subclass__} | ||
| )() | ||
dg-pb marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| def _partial_prepare_new(cls, func, args, keywords): | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -63,6 +63,17 @@ placeholder_repr(PyObject *op) | ||
| return PyUnicode_FromString("Placeholder"); | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Maybe use In particular, you could also decide whether the singleton should be implemented (and exported) using the same logic as for (Sorry, I only remembered about that singleton now and not before) | ||
| } | ||
| static PyObject * | ||
| placeholder_reduce(PyObject *op, PyObject *Py_UNUSED(ignored)) | ||
| { | ||
| return PyUnicode_FromString("Placeholder"); | ||
| } | ||
| static PyMethodDef placeholder_methods[] = { | ||
| {"__reduce__", placeholder_reduce, METH_NOARGS, NULL}, | ||
| {NULL, NULL} | ||
| }; | ||
| static void | ||
| placeholder_dealloc(PyObject* placeholder) | ||
| { | ||
| @@ -98,6 +109,7 @@ static PyType_Slot placeholder_type_slots[] = { | ||
| {Py_tp_dealloc, placeholder_dealloc}, | ||
| {Py_tp_repr, placeholder_repr}, | ||
| {Py_tp_doc, (void *)placeholder_doc}, | ||
| {Py_tp_methods, placeholder_methods}, | ||
| {Py_tp_new, placeholder_new}, | ||
| // Number protocol | ||
| {Py_nb_bool, placeholder_bool}, | ||