Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8ee3cd4

Browse files
committed
#546156, Remove load_false()/load_true(), they are not used
1 parent e1682a8 commit 8ee3cd4

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

Modules/cPickle.c

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2608,20 +2608,6 @@ load_none(Unpicklerobject *self)
26082608
return 0;
26092609
}
26102610

2611-
static int
2612-
load_false(Unpicklerobject *self)
2613-
{
2614-
PDATA_APPEND(self->stack, Py_False, -1);
2615-
return 0;
2616-
}
2617-
2618-
static int
2619-
load_true(Unpicklerobject *self)
2620-
{
2621-
PDATA_APPEND(self->stack, Py_True, -1);
2622-
return 0;
2623-
}
2624-
26252611
static int
26262612
bad_readline(void)
26272613
{

0 commit comments

Comments
 (0)