Skip to content

Commit b75fba0

Browse files
committed
Forget about Ellipses b/w compatibility.
1 parent 6d1356e commit b75fba0

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

Include/sliceobject.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ extern "C" {
99
extern DL_IMPORT(PyObject) _Py_EllipsisObject; /* Don't use this directly */
1010

1111
#define Py_Ellipsis (&_Py_EllipsisObject)
12-
#define Py_Ellipses Py_Ellipsis /* For bad spellers like me :-( */
1312

1413
/* Slice object interface */
1514

Python/bltinmodule.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,8 +1633,6 @@ initbuiltin()
16331633
initerrors();
16341634
(void) dictinsert(builtin_dict, "None", None);
16351635
(void) dictinsert(builtin_dict, "Ellipsis", Py_Ellipsis);
1636-
/* And once more for bad spellers like me :-( */
1637-
(void) dictinsert(builtin_dict, "Ellipses", Py_Ellipsis);
16381636
}
16391637

16401638

0 commit comments

Comments
 (0)