Skip to content

Commit 22417ec

Browse files
committed
Simplify xmlparseobject_ to xmlparseobject
Idea by @picnixz
1 parent a63bd34 commit 22417ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/pyexpat.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ pyexpat_get_state(PyObject *module)
7272

7373
/* Declarations for objects of type xmlparser */
7474

75-
typedef struct xmlparseobject_ {
75+
typedef struct xmlparseobject {
7676
PyObject_HEAD
7777

7878
XML_Parser itself;
79-
struct xmlparseobject_ * parent;
79+
struct xmlparseobject * parent;
8080
int ordered_attributes; /* Return attributes as a list. */
8181
int specified_attributes; /* Report only specified attributes. */
8282
int in_callback; /* Is a callback active? */

0 commit comments

Comments
 (0)