mirror of
https://github.com/python/cpython.git
synced 2026-02-27 01:21:01 +00:00
Use bitwise instead of logical or for flags.
This commit is contained in:
parent
ed36c06f1d
commit
7711273ce8
1 changed files with 1 additions and 1 deletions
|
|
@ -8795,7 +8795,7 @@ static PyMethodDef DBEnv_methods[] = {
|
|||
{"txn_recover", (PyCFunction)DBEnv_txn_recover, METH_NOARGS},
|
||||
#if (DBVER < 48)
|
||||
{"set_rpc_server", (PyCFunction)DBEnv_set_rpc_server,
|
||||
METH_VARARGS||METH_KEYWORDS},
|
||||
METH_VARARGS|METH_KEYWORDS},
|
||||
#endif
|
||||
#if (DBVER >= 43)
|
||||
{"set_mp_max_openfd", (PyCFunction)DBEnv_set_mp_max_openfd, METH_VARARGS},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue