Skip to content

Commit 6117ae3

Browse files
committed
Remove stale tokenizer buffer ownership comment
1 parent 27c3d73 commit 6117ae3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Parser/lexer/state.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ typedef struct _tokenizer_mode {
7070
struct tok_state {
7171
/* Input state; buf <= cur <= inp */
7272
/* NB an entire line is held in the buffer */
73-
char *buf; /* Owned for file/readline input; source-backed otherwise. */
73+
char *buf;
7474
char *cur; /* Next character in buffer */
7575
char *inp; /* End of data in buffer */
7676
_PyTok_Off buf_offset; /* Logical offset of buf[0]. */

0 commit comments

Comments
 (0)