Skip to content

Commit

Permalink
[build/cpython-defs] Update for Oils 0.18.0
Browse files Browse the repository at this point in the history
Moved some functions to YSH
  • Loading branch information
Andy C committed Sep 13, 2023
1 parent 787f2dd commit 7f0bb7d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

static PyMethodDef builtin_methods[] = {
{"__import__", (PyCFunction)builtin___import__, METH_VARARGS | METH_KEYWORDS},
{"abs", builtin_abs, METH_O},
{"all", builtin_all, METH_O},
{"any", builtin_any, METH_O},
{"callable", builtin_callable, METH_O},
{"chr", builtin_chr, METH_VARARGS},
{"dir", builtin_dir, METH_VARARGS},
Expand All @@ -16,7 +14,6 @@ static PyMethodDef builtin_methods[] = {
{"len", builtin_len, METH_O},
{"map", builtin_map, METH_VARARGS},
{"max", (PyCFunction)builtin_max, METH_VARARGS | METH_KEYWORDS},
{"min", (PyCFunction)builtin_min, METH_VARARGS | METH_KEYWORDS},
{"open", (PyCFunction)builtin_open, METH_VARARGS | METH_KEYWORDS},
{"ord", builtin_ord, METH_O},
{"print", (PyCFunction)builtin_print, METH_VARARGS | METH_KEYWORDS},
Expand Down

0 comments on commit 7f0bb7d

Please sign in to comment.