Skip to content

Commit d306363

Browse files
committed
Fix linter errors
1 parent 1b9a723 commit d306363

File tree

5 files changed

+8
-1
lines changed

5 files changed

+8
-1
lines changed

Include/internal/pycore_global_objects_fini_generated.h

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_global_strings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -685,6 +685,7 @@ struct _Py_global_strings {
685685
STRUCT_FOR_ID(pos1)
686686
STRUCT_FOR_ID(pos2)
687687
STRUCT_FOR_ID(posix)
688+
STRUCT_FOR_ID(posmode)
688689
STRUCT_FOR_ID(prec)
689690
STRUCT_FOR_ID(preserve_exc)
690691
STRUCT_FOR_ID(print_file_and_line)

Include/internal/pycore_runtime_init_generated.h

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_unicodeobject_generated.h

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/fcntlmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ fcntl_fstore___init___impl(FStoreObject *self, int flags, int posmode,
544544
return 0;
545545
}
546546

547-
static Py_ssize_t
547+
static int
548548
fstore_getbuffer(FStoreObject *self, Py_buffer *view, int flags)
549549
{
550550
return PyBuffer_FillInfo(view, (PyObject *)self, (void *)&self->fstore,

0 commit comments

Comments
 (0)