mirror of https://github.com/python/cpython
#546156, Remove load_false()/load_true(), they are not used
This commit is contained in:
parent
e1682a80fa
commit
8ee3cd47a9
|
@ -2608,20 +2608,6 @@ load_none(Unpicklerobject *self)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
load_false(Unpicklerobject *self)
|
||||
{
|
||||
PDATA_APPEND(self->stack, Py_False, -1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
load_true(Unpicklerobject *self)
|
||||
{
|
||||
PDATA_APPEND(self->stack, Py_True, -1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
bad_readline(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue