Skip to content

Commit a9b3ca6

Browse files
committed
add some new lines
1 parent cf44141 commit a9b3ca6

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Modules/_io/bufferedio.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ typedef struct {
260260
PyObject *dict;
261261
PyObject *weakreflist;
262262
} buffered;
263+
263264
#define _buffered_CAST(op) ((buffered *)(op))
264265

265266
/*
@@ -2229,6 +2230,7 @@ typedef struct {
22292230
PyObject *dict;
22302231
PyObject *weakreflist;
22312232
} rwpair;
2233+
22322234
#define _rwpair_CAST(op) ((rwpair *)(op))
22332235

22342236
/*[clinic input]

Modules/_io/iobase.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ typedef struct {
3434
PyObject *dict;
3535
PyObject *weakreflist;
3636
} iobase;
37+
3738
#define _iobase_CAST(op) ((iobase *)(op))
3839

3940
PyDoc_STRVAR(iobase_doc,

Modules/_io/textio.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ struct nldecoder_object {
222222
unsigned int translate: 1;
223223
unsigned int seennl: 3;
224224
};
225+
225226
#define _nldecoder_object_CAST(op) ((nldecoder_object *)(op))
226227

227228
/*[clinic input]
@@ -718,6 +719,7 @@ struct textio
718719

719720
_PyIO_State *state;
720721
};
722+
721723
#define _textio_CAST(op) ((textio *)(op))
722724

723725
static void

0 commit comments

Comments
 (0)