mirror of
https://github.com/python/cpython.git
synced 2025-08-25 11:15:02 +00:00
GH-115802: JIT "small" code for Windows (GH-115964)
This commit is contained in:
parent
45d8871dc4
commit
f0df35eeca
26 changed files with 129 additions and 96 deletions
|
@ -337,6 +337,12 @@ const binaryfunc _PyEval_BinaryOps[] = {
|
|||
[NB_INPLACE_XOR] = PyNumber_InPlaceXor,
|
||||
};
|
||||
|
||||
const conversion_func _PyEval_ConversionFuncs[4] = {
|
||||
[FVC_STR] = PyObject_Str,
|
||||
[FVC_REPR] = PyObject_Repr,
|
||||
[FVC_ASCII] = PyObject_ASCII
|
||||
};
|
||||
|
||||
|
||||
// PEP 634: Structural Pattern Matching
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue