Skip to content

Commit 74457bf

Browse files
tanloongJoBeGaming
andauthored
Added positional-only marker in lookup_special definition (#8)
Co-authored-by: JoBe <165585785+JoBeGaming@users.noreply.github.com>
1 parent e939d08 commit 74457bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def _m(self): pass
8282
def enclose_lookup_special():
8383
_sentinel = object()
8484

85-
def lookup_special(object, name, default=_sentinel):
85+
def lookup_special(object, name, default=_sentinel, /):
8686
"""Lookup method name `name` on `object` skipping the instance
8787
dictionary.
8888

0 commit comments

Comments
 (0)