Skip to content

Commit 61e37e4

Browse files
committed
Dummy change to update GitHub
1 parent 0dd7911 commit 61e37e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Objects/memoryobject.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3127,18 +3127,18 @@ memory_richcompare(PyObject *v, PyObject *w, int op)
31273127
// is not equal to itself. So only use this optimization on format known to
31283128
// not use floats.
31293129
if (v == w) {
3130-
int can_compare_ptrs;
3130+
int can_compare_ptr;
31313131
const char *format = vv->format;
31323132
if (format != NULL) {
31333133
// Exclude formats "d" (double), "f" (float), "e" (16-bit float)
31343134
// and "P" (void*)
3135-
can_compare_ptrs = (strchr("bBchHiIlLnNqQ?", format[0]) != NULL
3136-
&& format[1] == 0);
3135+
can_compare_ptr = (strchr("bBchHiIlLnNqQ?", format[0]) != NULL
3136+
&& format[1] == 0);
31373137
}
31383138
else {
3139-
can_compare_ptrs = 1;
3139+
can_compare_ptr = 1;
31403140
}
3141-
if (can_compare_ptrs) {
3141+
if (can_compare_ptr) {
31423142
equal = 1;
31433143
goto result;
31443144
}

0 commit comments

Comments
 (0)