Skip to content

Commit d18a82d

Browse files
committed
Fix comment formatting
1 parent 8f5cfe4 commit d18a82d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Modules/_io/fileio.c

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,11 @@ typedef struct {
7575
unsigned int closefd : 1;
7676
char finalizing;
7777
/* Stat result which was grabbed at file open, useful for optimizing common
78-
File I/O patterns to be more efficient. This is only guidance / an estimate,
79-
as it is subject to Time-Of-Check to Time-Of-Use (TOCTOU) issues / bugs.
80-
Both the underlying file descriptor and file may be modified outside of the
81-
fileio object / Python (ex. gh-90102, GH-121941, gh-109523). */
78+
File I/O patterns to be more efficient. This is only guidance / an
79+
estimate, as it is subject to Time-Of-Check to Time-Of-Use (TOCTOU)
80+
issues / bugs. Both the underlying file descriptor and file may be
81+
modified outside of the fileio object / Python (ex. gh-90102, GH-121941,
82+
gh-109523). */
8283
struct _Py_stat_struct *stat_atopen;
8384
PyObject *weakreflist;
8485
PyObject *dict;

0 commit comments

Comments
 (0)